/* Wrapper centré pour le form client */
.client-form-wrapper {
    max-width: 520px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Header du form : titre centré + bouton à gauche */
.client-form-header {
    position: relative;
    display: flex;
    justify-content: center;
    /* centre le h1 horizontalement */
    align-items: center;
    margin-bottom: 20px;
}

/* Bouton back : top-left du form, sans dépasser le wrapper */
.client-back-btn {
    position: absolute;
    left: 0;
    top: 0;
    white-space: nowrap;
}

/* Titre bien centré sur la largeur du form */
.client-form-header h1 {
    margin: 0;
    font-size: 26px;
    text-align: center;
}

/* Bloc form : petit card propre */
.client-form {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    border: 1px solid #e3e3e3;
}

/* Inputs harmonisés */
.client-form .form-control {
    padding: 10px;
    font-size: 15px;
}

/* Bouton submit full-width (client + login) */
.client-form .btn-success,
.client-form .btn-primary {
    width: 100%;
    padding: 12px;
    font-size: 16px;
}