@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

.login-font {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.login-split-container {
    min-height: 100vh;
}

.login-graphic-side {
    background: linear-gradient(135deg, hsl(145, 63%, 25%) 0%, hsl(145, 63%, 42%) 100%);
    position: relative;
    overflow: hidden;
}

.login-graphic-side::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    animation: rotateGradient 25s linear infinite;
    pointer-events: none;
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.login-card {
    border: none;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    background-color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.login-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.form-floating-custom {
    position: relative;
    margin-bottom: 1.25rem;
}

.form-floating-custom .form-control {
    height: 3.75rem;
    padding: 1.25rem 1rem 0.5rem 1rem;
    font-size: 1rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    background-color: #fff;
    transition: all 0.2s ease-in-out;
}

.form-floating-custom .form-control::placeholder {
    color: transparent;
}

.form-floating-custom .form-control:hover {
    border-color: var(--bs-primary);
}

.form-floating-custom .form-control:focus {
    border-color: var(--bs-primary);
    box-shadow: var(--bs-box-shadow);
}

.form-floating-custom label {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    color: #94a3b8;
    transition: all 0.2s ease;
    pointer-events: none;
    background-color: transparent;
}

.form-floating-custom .form-control:focus ~ label,
.form-floating-custom .form-control:not(:placeholder-shown) ~ label {
    top: 0;
    left: 1rem;
    font-size: 0.75rem;
    padding: 0 0.4rem;
    background-color: #fff;
    color: var(--bs-primary);
    transform: translateY(-50%);
    font-weight: 600;
}

/* Estilo para erros jQuery Validation */
label.error {
    display: block;
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 0.4rem;
    margin-left: 0.25rem;
    font-weight: 500;
}

input.error {
    border-color: #ef4444 !important;
}

input.error:focus {
    box-shadow: 0 0 0 0.25rem rgba(239, 68, 68, 0.15) !important;
}

/* Indicador de força de senha */
.password-strength-bar {
    height: 6px;
    border-radius: 3px;
    background-color: #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Botões Modernizados */
.btn-modern {
    padding: 0.85rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.25s ease;
}

.btn-modern:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(40, 171, 93, 0.2);
}

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