.quickregister-page {
    max-width: 520px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.quickregister-title {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.quickregister-subtitle {
    color: #555;
    margin-bottom: 1.5rem;
}

.quickregister-form .form-group {
    margin-bottom: 1rem;
}

.quickregister-form .form-control {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.quickregister-form .form-control:focus {
    outline: none;
    border-color: #2b8aef;
    box-shadow: 0 0 0 2px rgba(43, 138, 239, 0.2);
}

.quickregister-actions {
    display: flex;
    justify-content: flex-end;
}

.quickregister-submit {
    min-width: 160px;
}

.quickregister-submit[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

.quickregister-feedback {
    margin-top: 1rem;
    min-height: 1.4em;
}

.quickregister-feedback.is-success { color: #1a7f37; }
.quickregister-feedback.is-error   { color: #b42318; }

.quickregister-note {
    margin-top: 1rem;
    font-size: 0.85rem;
}

.quickregister-error {
    max-width: 520px;
    margin: 2rem auto;
    text-align: center;
}

/* -----------------------------------------------------------
 * Modal
 * -------------------------------------------------------- */
.qr-modal {
    position: fixed;
    inset: 0;
    z-index: 10500;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.qr-modal.is-open {
    display: flex;
}

.qr-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(2px);
}

.qr-modal__dialog {
    position: relative;
    width: 100%;
    max-width: 480px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    padding: 1.75rem;
    z-index: 1;
    animation: qrModalIn .18s ease-out;
}

@keyframes qrModalIn {
    from { opacity: 0; transform: translateY(-8px) scale(.98); }
    to   { opacity: 1; transform: translateY(0)    scale(1); }
}

.qr-modal__close {
    position: absolute;
    top: .5rem;
    right: .75rem;
    background: transparent;
    border: 0;
    font-size: 1.6rem;
    line-height: 1;
    color: #888;
    cursor: pointer;
    padding: .25rem .5rem;
}

.qr-modal__close:hover { color: #222; }

.qr-modal__title {
    font-size: 1.4rem;
    margin: 0 0 .25rem;
}

.qr-modal__subtitle {
    color: #555;
    margin: 0 0 1.25rem;
}

.qr-modal__form .form-group { margin-bottom: 1rem; }

body.qr-modal-open {
    overflow: hidden;
}

