* {
    font-family: 'Inter', system-ui, 'Segoe UI', Tahoma, sans-serif;
}

body {
    background: #eef2f8;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-container {
    background: white;
    border-radius: 28px;
    padding: 3rem 2.5rem;
    max-width: 520px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    margin: 1.5rem;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header .logo-icon {
    background: #1e6f9f;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    box-shadow: 0 4px 12px rgba(30, 111, 159, 0.3);
    margin-bottom: 1rem;
}

.auth-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0b3b5f;
    margin: 0 0 0.25rem 0;
}

.auth-header p {
    font-size: 0.85rem;
    color: #7a9cbb;
    margin: 0;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #3a5f7a;
    margin-bottom: 0.4rem;
}

.form-group .input-wrapper {
    position: relative;
}

.form-group .input-wrapper i {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #a0bccd;
    font-size: 1rem;
}

.form-group input {
    width: 100%;
    padding: 0.75rem 3rem 0.75rem 1rem;
    border: 2px solid #e8edf3;
    border-radius: 12px;
    font-size: 0.9rem;
    color: #1f3e4b;
    background: white;
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
}

.form-group input:focus {
    border-color: #1e6f9f;
    box-shadow: 0 0 0 4px rgba(30, 111, 159, 0.08);
}

.form-group input::placeholder {
    color: #b8ccdb;
    font-size: 0.85rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.auth-btn {
    width: 100%;
    padding: 0.8rem;
    background: linear-gradient(135deg, #1e6f9f, #0b4a6e);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.auth-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(30, 111, 159, 0.35);
}

.auth-btn:active {
    transform: translateY(0);
}

.auth-link {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: #5f7f9c;
}

.auth-link a {
    color: #1e6f9f;
    font-weight: 600;
    text-decoration: none;
}

.auth-link a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .auth-container {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .auth-header h2 {
        font-size: 1.2rem;
    }

    .auth-header .logo-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}