/* ── Layout Global ── */
.create-account-wrapper {
    display: flex;
    justify-content: center;
    padding: 2rem 1rem 3rem;
}

.create-account-inner {
    width: 100%;
    max-width: 520px;
}

/* ── Header ── */
.back-btn-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background-color: #f9fafb;
    color: #333;
    text-decoration: none;
    flex-shrink: 0;
    transition: background 0.15s;
}
.back-btn:hover { background-color: #e0e0e0; }

.back-btn-title {
    font-size: 1.9rem;
    font-weight: 700;
    color: #222;
    margin: 0;
}

/* ── Description ── */
.create-account-description {
    color: #555;
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 1.5rem;
}

/* ── Validation Temps Réel ── */
.input-error {
    border-color: #e30613 !important;
}

/* ── Stepper (Spécifique, conservé) ── */
.create-account-stepper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding: 0 10px;
    margin: 1.5rem 0 2rem;
}

.create-account-stepper::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: #d0d0d0;
    z-index: 0;
}

.stepper-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.stepper-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #d0d0d0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.4rem;
    background: #fff;
}

.stepper-circle.has-background-primary {
    border-color: transparent;
}

.stepper-label {
    font-size: 0.7rem;
    color: #333;
    text-align: center;
    line-height: 1.2;
}

/* ── Outils Password & Logo ── */
.password-wrapper {
    position: relative;
}
.password-toggle {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #888;
    padding: 0;
    line-height: 1;
}
.password-toggle:hover { color: #333; }

.create-account-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem !important;
}
.create-account-logo img {
    max-height: 80px;
    width: auto;
}