:root {
    --agepsa-blue: #004a99;
    --agepsa-dark: #002b5c;
    --bg-light: #f8fafc;
    --input-focus: rgba(0, 74, 153, 0.1);
}

.login-body {
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
}

 .login-bg-left {
    background: #f8fafc url('../../img/login2.png') no-repeat center center;
    background-size: cover;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-right-content {
    max-width: 420px;
    width: 100%;
}

/* Ajustes para Celulares */
@media (max-width: 767.98px) {
    .login-right-content {
        padding: 1rem !important;
        max-width: 100%;
    }
    .login-body { background-color: #ffffff; }
}

.login-right-content h2 {
    color: var(--agepsa-dark);
}

.animate-login {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.input-group-custom {
    position: relative;
    margin-bottom: 1.5rem;
}

.input-group-custom i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #cbd5e1;
    transition: color 0.3s ease;
    z-index: 10;
}

.input-group-custom .form-control {
    padding-left: 50px;
    height: 55px;
    border-radius: 16px;
    border: 2px solid #f1f5f9;
    background-color: #ffffff;
    transition: all 0.3s ease;
    font-weight: 500;
}

.input-group-custom .form-control:focus {
    border-color: var(--agepsa-blue);
    box-shadow: 0 0 0 4px var(--input-focus);
    outline: none;
}

.input-group-custom:focus-within i {
    color: var(--agepsa-blue);
}

.login-btn {
    height: 58px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0056b3 0%, var(--agepsa-blue) 100%);
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.95rem;
    box-shadow: 0 10px 15px -3px rgba(0, 74, 153, 0.25);
}

.login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 74, 153, 0.35);
    filter: brightness(1.1);
}

.login-btn:active {
    transform: translateY(0);
}