/* Styles principaux */
body {
    background: #f6f7fb;
    height:100vh;
}
.page-wrap {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 48px 16px;
}
.card-form {
    width: 100%;
    max-width: 980px;
    border: 0;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(18, 38, 63, 0.08);
    overflow: hidden;
}
.card-header-clean {
    background: #fff;
    border-bottom: 1px solid #eef0f4;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.brand-logo {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid #eef0f4;
}
.title-wrap {
    line-height: 1.1;
}
.title-wrap h1 {
    font-size: 22px;
    margin: 0;
    font-weight: 700;
    color: #1f2a37;
}
.title-wrap p {
    margin: 6px 0 0;
    color: #6b7280;
    font-size: 13px;
}

/* Styles pour le bouton "Suivant" */
.btn-next {
    display: inline-block;
    background-color: #2563eb;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 14px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-next:hover {
    background-color: #1d4ed8;
}

.footer-actions {
    justify-content: flex-end;
    gap: 12px;
    margin-top: 18px;
}

/* Ajoutez d'autres styles ici */
