body.auth-page.auth-register-page {
    background:
        linear-gradient(180deg, rgba(7, 10, 18, 0.62) 0%, rgba(7, 10, 18, 0.86) 100%),
        url('../../images/backgrounds/bg2.jpeg') center center / cover no-repeat fixed;
    color: #f5f5f7;
}

.auth-register-page .register-shell {
    max-width: 760px;
    padding-top: 1.75rem;
}

.auth-register-page .auth-logo {
    margin-top: 0.25rem;
}

.auth-register-page .register-container {
    color: #f5f5f7;
    background: rgba(15, 23, 42, 0.5);
    border-color: rgba(255, 255, 255, 0.12);
}

.auth-register-page .register-container::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
}

.auth-register-page .register-title,
.auth-register-page .register-subtitle,
.auth-register-page .form-footer,
.auth-register-page .auth-note,
.auth-register-page .form-floating > label,
.auth-register-page .form-check-label,
.auth-register-page .field-error,
.auth-register-page .feedback-global,
.auth-register-page .alert,
.auth-register-page .auth-kicker,
.auth-register-page .register-hint,
.auth-register-page .auth-inline-link {
    color: #f5f5f7;
}

.auth-register-page .auth-card-head {
    margin-bottom: 0.9rem;
}

.auth-register-page .form-floating > .form-control,
.auth-register-page .form-floating > .form-select {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.auth-register-page .form-select option {
    color: #1d1d1f;
}

.auth-register-page .form-check-input {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.22);
}

.auth-register-page .auth-password-group {
    position: relative;
}

.auth-register-page .auth-password-group .form-control {
    padding-right: 3.2rem;
}

.auth-register-page .auth-password-toggle {
    position: absolute;
    top: 50%;
    right: 0.55rem;
    transform: translateY(-50%);
    z-index: 5;
    width: 2.3rem;
    height: 2.3rem;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #f5f5f7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.18s ease, transform 0.18s ease, opacity 0.18s ease;
}

.auth-register-page .auth-password-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-50%) scale(1.02);
}

.auth-register-page .feedback-global {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(180, 35, 24, 0.16);
}

.auth-register-page .feedback-global-error {
    padding: 1.1rem 1.15rem;
    box-shadow: 0 9px 22px rgba(0, 0, 0, 0.12);
}

.auth-register-page .feedback-global-error:focus {
    outline: 2px solid rgba(255, 255, 255, 0.4);
    outline-offset: 3px;
}

.auth-register-page .feedback-global-header {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
}

.auth-register-page .feedback-global-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    font-size: 1rem;
    flex: 0 0 auto;
}

.auth-register-page .feedback-global-message {
    color: rgba(245, 245, 247, 0.92);
    line-height: 1.5;
}

.auth-register-page .register-grid {
    display: grid;
    gap: 1rem;
}

.auth-register-page .register-grid-double {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.auth-register-page .register-check-stack {
    padding: 1rem 1.1rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
}

.auth-register-page .register-check-stack .form-check:first-child {
    margin-top: 0;
}

.auth-register-page .register-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.auth-register-page .btn-register {
    padding: 0.95rem;
}

.auth-register-page .auth-note {
    color: rgba(245, 245, 247, 0.78);
}

.auth-register-page .modal-content {
    background: rgba(18, 18, 24, 0.94);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
}

.auth-register-page .modal-header,
.auth-register-page .modal-footer {
    border-color: rgba(255, 255, 255, 0.08);
}

.auth-register-page .modal-body {
    max-height: 60vh;
    overflow-y: auto;
}

@media (max-width: 768px) {
    .auth-register-page .register-grid-double {
        grid-template-columns: 1fr;
    }
}
