/* Estilos para páginas de autenticação (login e cadastro) */



#registration-form .form-group {
    margin-bottom: 1rem;
}

#registration-form label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

#registration-form input,
#registration-form select {
    width: 100%;
    border: 1px solid var(--light-blue);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

#registration-form input:focus,
#registration-form select:focus {
    border-color: var(--burgundy);
    outline: none;
    box-shadow: 0 0 0 2px rgba(65, 20, 37, 0.2);
}

/* Mensagens de erro */
.form-error {
    color: var(--red);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}


/* Estilos para a linha que contém o formulário */
.row.connect-wrapper {
    display: flex;
    justify-content: center;
    margin: 2rem auto;
}

/* Estilos para telas menores */
@media (max-width: 768px) {
    .connect-wrapper {
        padding: 1.5rem;
        margin: 2rem auto;
    }
} 

.subtitle {
    color: var(--gold);
    font-size: 2rem;
}