:root {
    --bg-outer: #92599e;
    --bg-inner: #b783ff;
    --panel: #0e2230;
    --panel-2: #113143;
    --text: #eaf2f6;
    --muted: #a9c0cc;
    --accent: #b783ff;
    --ring: #7ac7ff55;
}

[v-cloak] {
    display: none;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    color: var(--text);
    background: radial-gradient(circle at 50% 50%, var(--bg-inner) 0%, var(--bg-outer) 70%);
    background-attachment: fixed;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

.logo {
    position: relative;
    top: 18px;
    left: 22px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: 8px;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo span {
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 0 rgba(0, 0, 0, .25);
}

.password-container .lead {
    font-size: 1.1rem;
}

.password-container-panel {
    padding-top: 100px;
}
.password-container-panel .logo {
    text-align: center;
    margin-bottom: 20px;
    display: block;
    top: auto;
    left: auto;
    right: auto;
    margin: auto auto 20px auto;
}
.password-container {
    max-width: 300px;
    border: solid 1px #93599f;
    border-radius: 17px;
    padding: 16px;
    text-align: center;
    margin: auto;
    background: #93599f;
}   
.outer {
    padding: 0 24px 40px;
}

.panel {
    border-radius: 18px;
    overflow: hidden;
}

.stepper {
    position: relative;
    /* NEW */
    padding: 50px 20px;
    border-right: 2px solid rgba(255, 255, 255, .18);
    /* thicker line */
    min-height: 560px;
}

.stepper .step {
    position: relative;
    /* NEW: so the dot can center per row */
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 8px;
    border-radius: 10px;
    color: var(--muted);
    cursor: pointer;
    padding-right: 24px;
    font-weight: 700;
    /* room so text doesn’t touch the line */
}

.stepper .dot {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -30px;
    height: 20px;
    width: 20px;
    border-radius: 999px;
    border: 2px solid #b8ccd8;
    background: #fff;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    font-weight: 700;
}

.stepper .step.active .dot {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(183, 131, 255, .18);
    background-color: #92599e;
}

.stepper .step.active {
    color: #fff;
}

.content {
    padding: 32px;
    padding-top: 0;
}

.content h2 {
    font-weight: 700;
}
.content h3 {
    
    margin: 4px 0 14px;
}

.content .lead {
    color: #bfbfbf;
}

.form-control,
.form-select {
    background: rgba(255, 255, 255, .12);
    color: #e6eef2;
    border: 1px solid rgba(255, 255, 255, .14);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 .25rem var(--ring);
    background: rgba(255, 255, 255, .18);
    color: #fff;
}

.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 .25rem rgba(220, 53, 69, .25);
}

.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #dc3545;
}

.form-check-input {
    background-color: transparent;
    border-color: rgba(255, 255, 255, .5);
}

.nav-actions {
    padding: 16px 32px;
}

.btn-accent {
    background: #ffffff;
    border: none;
    color: #1a0930;
    font-weight: 700;
    padding: 5px 30px;
}

.btn-accent:hover {
    background: #e6eef2;
    color: #1a0930;
}

.required {
    color: #ffb4b4;
    margin-left: 2px;
}

.subtle {
    color: var(--muted);
    font-size: .9rem;
}

.input-note {
    font-size: .85rem;
    color: #cfe1ea;
    opacity: .9;
}

hr.translucent {
    border-color: rgba(255, 255, 255, .12);
    opacity: 1;
}

@media (max-width: 992px) {
    .stepper {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
        min-height: auto !important;
    }
    .stepper .step {
        padding-right: 0;
    }
    .stepper .dot {
        display: none;
    }
}