/* page de connexion */
.bg-custom {
    background-color: #f2f2f2;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 15px 0 15px;
}

.card {
    /* pour le formulaire */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    width: 100%;
    max-width: 400px;
}

.onglets {
    /* pour étudiant et professeur */
    display: flex;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.onglets div {
    flex: 1;
    text-align: center;
    padding: 0.75rem 0;
    font-weight: 500;
    cursor: pointer;
}

.onglets .active {
    background-color: #2e5090;
    color: white;
}

.onglets .inactive {
    background-color: #eee;
    color: #555;
}

.input-group-text {
    background-color: #555;
    color: white;
    border: none;
}

.form-control::placeholder {
    color: #999;
    font-style: italic;
}

.btn-primary {
    /* pour le bouton connecter */
    background-color: #555;
    border: none;
    width: 100%;
}

.btn-primary:hover {
    background-color: #333;
}

.texte {
    
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.texte a {
    text-decoration: underline;
    color: #333;
}