/* Importando as variáveis de design do sistema principal */
:root {
    --primary-color: #4361ee;
    --secondary-color: #3f37c9;
    --danger-color: #e74c3c;
    --dark-color: #2c3e50;
    --text-color: #333;
    --text-light: #7f8c8d;
    --border-color: #e0e0e0;
    --border-radius: 8px;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    margin: 0;
}

.login-container {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

/* Coluna da Esquerda (Branding) */
.login-branding {
    flex-basis: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.branding-content .logo-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.branding-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.branding-content p {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Coluna da Direita (Formulário) */
.login-form-panel {
    flex-basis: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.form-content {
    width: 100%;
    max-width: 400px;
}

.form-content h2 {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.form-control {
    padding: 0.75rem 1rem;
    height: 48px;
}

.input-group-text {
    background-color: #fff;
}

#togglePassword {
    border-left: 0;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem;
    font-weight: 600;
}

.btn-primary:hover {
    filter: brightness(1.1);
}

/* Responsividade */
@media (max-width: 992px) {
    .login-branding {
        display: none; /* Oculta a coluna de branding em telas menores */
    }

    .login-form-panel {
        flex-basis: 100%;
    }
}