/* 
 * Arquivo: /www.simpseg.com.br/assets/css/simulador_login.css
 * Estilos do Modal de Login/Cadastro inspirados em login.php
 */

.modal-login-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
}

.modal-login-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-control-dark {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
    border-radius: 8px;
    padding: 10px;
}

.form-control-dark:focus {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: #c01818 !important;
    box-shadow: 0 0 0 0.25rem rgba(192, 24, 24, 0.25);
}

.btn-primary-custom {
    background-color: #c01818;
    border-color: #c01818;
    border-radius: 8px;
    padding: 10px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #a01414;
    border-color: #a01414;
    transform: translateY(-2px);
}

.btn-social {
    width: 100%;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    padding: 8px;
    border-radius: 8px;
    transition: 0.3s;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    cursor: pointer;
}

.btn-social:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1rem 0;
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
}
.divider::before, .divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.divider:not(:empty)::before { margin-right: .5em; }
.divider:not(:empty)::after { margin-left: .5em; }

.nav-pills .nav-link {
    color: rgba(255,255,255,0.6);
    cursor: pointer;
}
.nav-pills .nav-link.active {
    background-color: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}