.flex {
    display: flex;

}

.justify-center {
    justify-content: center;
}

.flex-col {
    flex-direction: column;
}

.justify-start {
    justify-content: start;
}

.d-block {
    display: block;
}

.mt-2 {
    margin-top: 10px;
}


/* Style général bouton */
.btn {
    display: inline-block;
    padding: 10px 18px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    border: none;
}

/* Variante "primary" */
.btn-primary {
    background-color: #007bff;
    /* bleu Keycloak-ish */
    color: #fff;
}

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

.btn-primary:active {
    background-color: #0056b3;
}

.btn-primary:disabled {
    background-color: #a0c8f0;
    cursor: not-allowed;
}

@media (max-width: 1024px) {
    main.flex {
        flex-direction: column;
        align-items: stretch;
    }
}