/* Fundo da tela de login */
#auth {
    background: #1E1E1E !important;
    color: #FFFFFF !important;
}

/* Cartão de login */
#auth .card {
    background: #252525 !important;
    color: #FFFFFF !important;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.6);
}

/* Labels */
#auth label {
    color: #FFFFFF !important;
}

/* Grupo de input com ícone (usuário, senha) */
#auth .input-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

#auth .input-group-text {
    background-color: #3B3B3B !important;
    border: 1px solid #F56F10 !important;
    border-right: none;
    color: #FF9B4A;
    padding: 10px 14px;
    border-radius: 8px 0 0 8px;
    font-size: 16px;
}

/* Campo de input */
#auth .input-group input {
    background: #3B3B3B !important;
    color: #FFFFFF !important;
    border: 1px solid #F56F10 !important;
    border-left: none;
    border-radius: 0 8px 8px 0;
    padding: 10px 14px;
    width: 100%;
}

#auth .input-group input::placeholder {
    color: #BEBEBE !important;
}

/* Botões (Entrar / Registrar) com gradiente e destaque real */
.btn-primary {
    background: linear-gradient(90deg, #F56F10, #F5862C) !important;
    color: #FFFFFF !important;
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(245, 111, 16, 0.4);
    transition: all 0.3s ease-in-out;
}

/* Hover nos botões */
.btn-primary:hover {
    background: linear-gradient(90deg, #D85D0E, #F56F10) !important;
    transform: scale(1.03);
    box-shadow: 0 6px 14px rgba(245, 111, 16, 0.5);
}

/* Checkbox moderno */
#auth .form-check-input {
    background-color: #3B3B3B !important;
    border: 1px solid #F56F10 !important;
    width: 16px;
    height: 16px;
    margin-top: 3px;
    cursor: pointer;
    border-radius: 4px;
}

/* Checkbox marcado */
#auth .form-check-input:checked {
    background-color: #F56F10 !important;
    border-color: #F56F10 !important;
}

/* Ícone ✓ ao marcar */
#auth .form-check-input:checked::before {
    content: '✓';
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    display: block;
    text-align: center;
    line-height: 15px;
}

/* Texto ao lado do checkbox */
#auth .form-check-label {
    color: #FFFFFF !important;
    font-size: 14px;
    margin-left: 6px;
}

/* Links dos termos e política */
#auth .form-check-label a {
    color: #FF9B4A !important;
    text-decoration: underline;
    font-weight: 500;
}
#auth .form-check-label a:hover {
    color: #F56F10 !important;
}

/* Link auxiliar (ex: Esqueci a senha) */
#auth a {
    color: #FF9B4A !important;
}
#auth a:hover {
    color: #F56F10 !important;
    text-decoration: underline;
}