/* Estilos específicos para a página de login */
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.login-page {
    display: flex;
    min-height: 100vh;
    background: #ffffff;
}

.svg-container {
    display: none;
}

.login-form-column {
    width: 35%;
    min-height: 100vh;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

.brand-column {
    width: 65%;
    min-height: 100vh;
    padding: 2rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    background: #0d6efd;
}

.brand-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 0;
}

.brand-header {
    text-align: left;
    margin-bottom: 1rem;
}

.brand-header h1 {
    font-size: 2rem;
    margin: 0.5rem 0;
    font-weight: 700;
    line-height: 1.2;
}

.brand-header .lead {
    font-size: 1rem;
    line-height: 1.4;
    opacity: 0.9;
    margin-bottom: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 0.75rem 0;
}

.feature-item {
    text-align: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.feature-item h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-item p {
    font-size: 0.85rem;
    line-height: 1.3;
    opacity: 0.8;
}

.benefits-list {
    margin: 2rem 0;
}

.benefits-list h2 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.benefits-list ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.benefits-list li {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    line-height: 1.3;
}

.benefits-list li i {
    margin-right: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-section {
    text-align: center;
    margin-top: 2rem;
}

.cta-section .btn {
    padding: 0.6rem 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease;
}

.cta-section .btn:hover {
    transform: translateY(-2px);
}

.tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .brand-header h1 {
        font-size: 2.5rem;
    }

    .brand-header .lead {
        font-size: 1.25rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefits-list ul {
        grid-template-columns: 1fr;
    }

    .benefits-list li {
        font-size: 1rem;
    }
}

.login-container {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.login-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.login-logo i {
    font-size: 3rem;
    color: #0d6efd;
    margin-bottom: 1rem;
}

.login-logo h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.card {
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    background: transparent;
}

.input-group-text {
    background-color: transparent;
    border-right: none;
}

.form-control {
    border-left: none;
}

.form-control:focus {
    border-color: #dee2e6;
    box-shadow: none;
}

.btn-primary {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
}

.register-link {
    margin-top: 1.5rem;
    text-align: center;
}

@media (max-width: 768px) {
    /* Remover SVG de fundo no mobile */
    .svg-container {
        display: none;
    }
    
    /* Formulário no topo com fundo branco */
    .login-form-column {
        position: relative;
        width: 100%;
        height: auto;
        min-height: auto;
        clip-path: none;
        padding: 2rem 1.5rem;
        background: #ffffff !important;
        box-shadow: none;
    }
    
    /* Conteúdo abaixo com fundo azul */
    .brand-column {
        position: relative;
        width: 100%;
        margin-left: 0;
        min-height: auto;
        clip-path: none;
        padding: 2rem 1.5rem;
        text-align: center;
        background: #0d6efd !important;
    }
    
    /* Ajustes de tipografia */
    .brand-content {
        gap: 0.5rem;
        padding: 0;
    }
    
    .brand-header {
        margin-bottom: 0.75rem;
    }
    
    .brand-content h1 {
        font-size: 1.5rem;
        margin: 0.25rem 0;
    }
    
    .brand-content p,
    .brand-content .lead {
        font-size: 0.875rem;
        line-height: 1.4;
    }

    /* Container do formulário */
    .login-container {
        max-width: 100%;
        padding: 0;
        background: transparent;
        box-shadow: none;
    }
    
    /* Grid de features em 2 colunas no mobile */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        margin: 0.5rem 0;
    }
    
    /* Ajustar tamanho dos ícones e textos */
    .feature-item {
        padding: 0.5rem;
    }
    
    .feature-item i {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }
    
    .feature-item h6 {
        font-size: 0.75rem;
        margin-bottom: 0;
    }
    
    /* Logo menor no mobile */
    .brand-header img {
        max-width: 150px;
    }
}
