﻿/* =========================================
   Login.css - Lituanus Educa (Split Layout)
   ========================================= */

.login-wrapper {
    min-height: calc(100vh - 160px);
    padding: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* Container base do Card Largo */
.login-split-card {
    border-radius: 24px !important;
    background: #ffffff;
    max-width: 1050px;
    width: 100%;
    min-height: 600px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .login-split-card:hover {
        box-shadow: 0 20px 40px rgba(13, 71, 161, 0.08) !important;
    }

/* Overlay moderno e sutil */
.login-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(13, 71, 161, 0.8) 0%, rgba(13, 71, 161, 0.3) 40%, rgba(0, 0, 0, 0.4) 100%);
}

/* Utilitários de Z-Index */
.z-index-1 {
    z-index: 1;
}

.z-index-2 {
    z-index: 2;
}

/* Sombras suavizadas para estética Fintech */
.text-shadow-sm {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.text-shadow-lg {
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.tracking-tight {
    letter-spacing: -0.02em;
}

/* Inputs minimalistas integrados com Floating Labels */
.form-floating > .custom-input {
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    height: 3.5rem;
    font-size: 0.95rem;
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
    transition: all 0.2s ease-in-out;
}

    .form-floating > .custom-input:focus {
        box-shadow: 0 0 0 4px rgba(25, 118, 210, 0.12);
        border-color: #1976d2;
        background-color: #fff;
    }

/* Garantir que o label acompanhe o design moderno */
.form-floating > label {
    padding: 1rem 0.75rem;
    transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
}

/* Botão de Login de Alta Conversão */
.btn-login-animate {
    background: linear-gradient(135deg, #1976d2, #0d47a1);
    border: none;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.3px;
    border-radius: 12px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(13, 71, 161, 0.2);
}

    .btn-login-animate:hover {
        background: linear-gradient(135deg, #1565c0, #0a3d8a);
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(13, 71, 161, 0.3);
        color: white;
    }

    .btn-login-animate:active {
        transform: translateY(0);
    }

.hover-underline:hover {
    text-decoration: underline !important;
}

/* Responsividade refinada */
@media (max-width: 991.98px) {
    .login-wrapper {
        padding: 1rem;
    }

    .login-split-card {
        border-radius: 16px !important;
        min-height: auto;
    }
}
