.login-page-wrapper {
    width: 100%;
    height: 100vh;
    background: #f8fafc;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Círculos de fondo consistentes con Prelog */
.bg-blur-circle-1 {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 450px;
    height: 450px;
    background: rgba(137, 198, 6, 0.2);
    filter: blur(90px);
    border-radius: 50%;
}

.bg-blur-circle-2 {
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 450px;
    height: 450px;
    background: rgba(19, 130, 67, 0.2);
    filter: blur(90px);
    border-radius: 50%;
}

.login-card {
    width: 90%;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 35px;
    padding: 45px 35px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.login-header {
    text-align: center;
    margin-bottom: 35px;
}

    .login-header h2 {
        font-size: 1.8rem;
        font-weight: 800;
        color: #1e293b;
        margin: 0;
    }

    .login-header .highlight {
        color: #89C606;
    }

    .login-header p {
        font-size: 0.9rem;
        color: #64748b;
        margin-top: 10px;
    }

.form-group {
    margin-bottom: 22px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        font-size: 0.85rem;
        color: #334155;
    }

.input-container {
    position: relative;
}

    .input-container i {
        position: absolute;
        left: 16px;
        top: 50%;
        transform: translateY(-50%);
        color: #94a3b8;
        font-size: 0.9rem;
    }

    .input-container input {
        width: 100%;
        padding: 14px 14px 14px 45px;
        border: 2px solid #e2e8f0;
        border-radius: 14px;
        font-size: 0.95rem;
        background: #f8fafc;
        transition: all 0.3s ease;
    }

        .input-container input:focus {
            border-color: #89C606;
            background: #ffffff;
            box-shadow: 0 0 0 4px rgba(137, 198, 6, 0.1);
            outline: none;
        }

.forgot-link {
    text-align: right;
    margin-top: -5px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #555;
}

    .forgot-link a {
        color: #89c606; /* Verde profesional */
        font-weight: 600;
        text-decoration: none;
        transition: 0.2s;
    }

        .forgot-link a:hover {
            text-decoration: underline;
            color: #0f3e14;
        }

.btn-login-submit {
    width: 100%;
    background: #138243;
    color: #ffffff;
    border: none;
    padding: 16px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

    .btn-login-submit:hover {
        background: #89C606;
        transform: translateY(-2px);
        box-shadow: 0 10px 15px -3px rgba(137, 198, 6, 0.3);
    }

.divider-text {
    text-align: center;
    margin: 20px 0;
    color: #cbd5e1;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.register-footer {
    text-align: center;
    font-size: 0.9rem;
    color: #64748b;
}

    .register-footer a {
        color: #89c606;
        font-weight: 700;
        text-decoration: none;
    }

@media (max-width: 480px) {
    .login-card {
        padding: 35px 25px;
    }

    .login-header h2 {
        font-size: 1.5rem;
    }
}
