body {
    background: linear-gradient(135deg, #0061f2 0%, #003c99 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 20px;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.login-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
    display: flex;
}

.row {
    width: 100%;
    margin: 0 !important;
}

.login-illustration {
    background: #F2F4FF;
    padding: clamp(2rem, 5vw, 6rem) clamp(1.5rem, 3vw, 3rem);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.form-container {
    padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 3vw, 3rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.form-control {
    padding: 0.875rem 1rem;
    border: 1px solid #e0e3e9;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.2s;
    font-family: 'Montserrat', sans-serif;
}

.form-control:focus {
    border-color: #0061f2;
    box-shadow: 0 0 0 0.25rem rgba(0, 97, 242, 0.1);
}

.password-field {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 0.25rem;
}

.password-toggle:hover {
    color: #0061f2;
}

.form-label {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.btn-sign-in {
    padding: 0.875rem;
    border-radius: 8px;
    width: 100%;
    background-color: #0061f2;
    color: white;
    font-weight: 600;
    border: none;
    transition: background-color 0.2s;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-sign-in:hover {
    background-color: #0052cc;
}

.esqueceu-senha {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
    font-weight: 500;
}

.esqueceu-senha:hover {
    color: #0061f2;
    text-decoration: underline;
}

.login-title {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2.5rem;
    letter-spacing: 0.5px;
}

.welcome-text {
    color: #1f2937;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.welcome-subtext {
    color: #6b7280;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 500;
}

.error-message {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.375rem;
    display: block;
    font-weight: 500;
}

.remember-me {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.remember-me input[type="checkbox"] {
    margin-right: 0.5rem;
    width: 1rem;
    height: 1rem;
    border-radius: 4px;
    border: 1px solid #e0e3e9;
}

.remember-me label {
    color: #6b7280;
    font-size: 0.9rem;
    user-select: none;
    cursor: pointer;
    font-weight: 500;
}

.auth-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .login-container {
        flex-direction: column;
        margin: 1rem;
        min-height: auto;
    }

    .login-illustration {
        padding: 3rem 1.5rem;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 575.98px) {
    body {
        padding: 0;
    }

    .login-container {
        margin: 0;
        border-radius: 0;
        min-height: 100vh;
    }

    .auth-footer {
        flex-direction: column-reverse;
        gap: 1rem;
        align-items: stretch;
        text-align: center;
    }

    .remember-me {
        justify-content: center;
        margin-bottom: 0;
    }

    .login-illustration {
        padding: 2rem 1rem;
    }

    .form-container {
        padding: 2rem 1rem;
    }
}