/**
 * Registration Modal Styles
 */

/* Modal Backdrop */
.register-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.register-modal-backdrop.show {
    opacity: 1;
    visibility: visible;
}

/* Main Wrapper */
.registration-form__wrapper {
    display: flex;
    max-width: 1200px;
    width: 100%;
    background: linear-gradient(135deg, #1a1d24 0%, #0f1117 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.3);
    border: 2px solid rgba(212, 175, 55, 0.3);
    position: relative;
    max-height: 90vh;
    animation: modalSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalSlideIn {
    from {
        transform: scale(0.9) translateY(20px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

/* Close Button */
.registration-form__close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
}

.registration-form__close-icon-wr {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.registration-form__close:hover .registration-form__close-icon-wr {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    transform: rotate(90deg);
}

.registration-form__close-icon {
    font-size: 24px;
    color: #fff;
}

/* Left Panel - Bonuses */
.registration-form__panel--bonuses {
    flex: 0 0 400px;
    background: linear-gradient(180deg, #1f2329 0%, #15181d 100%);
    padding: 40px 30px;
    border-right: 2px solid rgba(212, 175, 55, 0.2);
    overflow-y: auto;
}

/* Welcome Bonuses */
.welcome-bonuses {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.welcome-bonuses__banner {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    margin-bottom: 10px;
}


.welcome-bonuses__banner-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.welcome-bonuses__banner-title {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.welcome-bonuses__banner-offer-value {
    font-size: 80px;
    font-weight: 900;
    color: #000;
    line-height: 1;
}

.welcome-bonuses__banner-offer-unit {
    font-size: 40px;
    font-weight: 900;
    color: #000;
}

/* Bonus Items List */
.welcome-bonuses__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.welcome-bonuses__item {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.welcome-bonuses__item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
}

.welcome-bonuses__item--active {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.5);
}

.welcome-bonuses__content-img-wrap {
    position: relative;
}

.welcome-bonuses__item-img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #000;
}

.welcome-bonuses__item-status {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #4CAF50;
    border: 3px solid #1a1d24;
    display: none;
}

.welcome-bonuses__item--active .welcome-bonuses__item-status {
    display: block;
}

.welcome-bonuse-header {
    flex: 1;
}

.welcome-bonuses-header__details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.welcome-bonuses-header__title {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.welcome-bonuses-header__name {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.welcome-bonuses-header__subtitle {
    font-size: 18px;
    font-weight: 700;
    color: #d4af37;
}

/* Toggle Switch */
.checkbox-on-off {
    flex-shrink: 0;
}

.checkbox-on-off__label {
    cursor: pointer;
    margin: 0;
}

.checkbox-on-off__ch {
    display: none;
}

.checkbox-on-off__pseudo-block {
    width: 50px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-on-off__pseudo-block-icon {
    position: absolute;
    width: 22px;
    height: 22px;
    background: #fff;
    border-radius: 50%;
    top: 3px;
    left: 3px;
    transition: all 0.3s ease;
}

.checkbox-on-off__ch:checked + .checkbox-on-off__pseudo-block {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
}

.checkbox-on-off__ch:checked + .checkbox-on-off__pseudo-block .checkbox-on-off__pseudo-block-icon {
    left: 25px;
    background: #000;
}

/* Promo Code Form */
.welcome-bonuses__promocode-form {
    margin-top: 10px;
}

.promocode-form__field {
    display: flex;
    align-items: center;
    gap: 10px;
}

.promocode-form__input {
    flex: 1;
}

.promocode-form__ic-wr {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.promocode-form__ic {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.5);
}

.promocode-form__ic-wr:hover {
    background: rgba(212, 175, 55, 0.2);
}

.promocode-form__ic-wr:hover .promocode-form__ic {
    color: #d4af37;
}

/* Right Panel - Form */
.registration-form__panel:not(.registration-form__panel--bonuses) {
    flex: 1;
    padding: 40px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.registration-form__header {
    margin-bottom: 30px;
}

.registration-form__title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    background: linear-gradient(135deg, #fff 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.registration-form__body {
    flex: 1;
}

.registration-form__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Input Fields */
.registration-form__inputs {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.input-field {
    position: relative;
}

.input-field__wrap {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 56px;
}

.input-field__wrap:focus-within {
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.05);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.input-field__prepend-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 20px;
    flex-shrink: 0;
}

.input-field__wrap:focus-within .input-field__prepend-icon {
    color: #d4af37;
}

.input-field__input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 15px;
    padding: 0 16px 0 0;
    height: 100%;
}

.input-field__input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* Animated Label */
.input-field__label-anim {
    position: absolute;
    left: 56px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    padding: 0 4px;
}

.input-field__input:focus + .input-field__label-anim,
.input-field__input:not(:placeholder-shown) + .input-field__label-anim {
    top: -2px;
    left: 50px;
    font-size: 12px;
    color: #d4af37;
    background: #1a1d24;
}

/* Password Eye Toggle */
.input-field__pseudo-pas-eye {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.input-field__pseudo-pas-eye-ic {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s ease;
}

.input-field__pseudo-pas-eye:hover .input-field__pseudo-pas-eye-ic {
    color: #d4af37;
}

/* Error Text */
.error-text {
    color: #ff4444;
    font-size: 12px;
    margin: 6px 0 0 16px;
    display: none;
}

.error-text:not(:empty) {
    display: block;
}

.error-message {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    color: #ff4444;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 16px;
}

/* Country & Currency Selects */
.registration-form__selects {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.country-select,
.custom-select {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    height: 56px;
    transition: all 0.3s ease;
}

.country-select:focus-within,
.custom-select:focus-within {
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.05);
}

.country-select__flag,
.custom-select__icon-wr {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 20px;
    flex-shrink: 0;
}

.country-select:focus-within .country-select__flag,
.custom-select:focus-within .custom-select__icon-wr {
    color: #d4af37;
}

.country-select__select,
.custom-select__select {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 15px;
    padding: 0 16px 0 0;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-weight: 500;
}

.country-select__select option,
.custom-select__select option {
    background: linear-gradient(135deg, #1a1d24 0%, #0f1117 100%);
    color: #fff;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.country-select__select option:hover,
.custom-select__select option:hover {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #000;
}

.country-select__select option:checked,
.custom-select__select option:checked {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #000;
    font-weight: 600;
}

.country-select__arrow,
.custom-select__arrow {
    position: absolute;
    right: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 20px;
    pointer-events: none;
    transition: all 0.3s ease;
}

.country-select:focus-within .country-select__arrow,
.custom-select:focus-within .custom-select__arrow {
    color: #d4af37;
    transform: rotate(180deg);
}

.country-select__select:hover,
.custom-select__select:hover {
    cursor: pointer;
}

/* Hide nice-select for custom styled selects */
.country-select .nice-select,
.custom-select .nice-select {
    display: none !important;
}

/* Ensure original select is visible */
select[data-no-nice-select] {
    display: block !important;
}

/* Submit Button */
.registration-form__button {
    margin-top: 10px;
}

.btn--primary-b {
    width: 100%;
    height: 56px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border: none;
    border-radius: 12px;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn--primary-b:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.5);
}

.btn--primary-b:active {
    transform: translateY(0);
}

/* Social Registration */
.reg-social {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.reg-social__separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reg-social__list {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon__icon {
    font-size: 20px;
    color: #fff;
}

.social-icon--google:hover {
    background: rgba(219, 68, 55, 0.1);
    border-color: #DB4437;
}

.social-icon--telegram:hover {
    background: rgba(0, 136, 204, 0.1);
    border-color: #0088cc;
}

/* Login Link */
.registration-form__login {
    text-align: center;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.registration-form__login-link {
    color: #d4af37;
    cursor: pointer;
    font-weight: 600;
    transition: color 0.3s ease;
}

.registration-form__login-link:hover {
    color: #f4d03f;
    text-decoration: underline;
}

/* Agreements */
.registration-form__agreement {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.checkbox__pseudo-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    margin: 0;
}

.checkbox__pseudo {
    display: flex;
    flex-shrink: 0;
}

.checkbox__pseudo-input {
    display: none;
}

.checkbox__pseudo-block {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    transition: all 0.3s ease;
}

.checkbox__pseudo-input:checked + .checkbox__pseudo-block {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border-color: #d4af37;
}

.checkbox__pseudo-input:checked + .checkbox__pseudo-block::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox__pseudo-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    line-height: 1.5;
}

.checkbox__pseudo-label a,
.terms-link {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s ease;
}

.checkbox__pseudo-label a:hover,
.terms-link:hover {
    color: #f4d03f;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 968px) {
    .registration-form__wrapper {
        flex-direction: column;
        max-height: 92vh;
    }

    .registration-form__panel--bonuses {
        flex: 0 0 auto;
        max-height: 160px;
        border-right: none;
        border-bottom: 2px solid rgba(212, 175, 55, 0.2);
        padding: 12px;
        overflow-y: auto;
    }

    .welcome-bonuses__banner {
        height: 70px;
        margin-bottom: 6px;
        border-radius: 10px;
    }

    .welcome-bonuses__banner-badge {
        top: 6px;
        left: 6px;
        padding: 3px 8px;
        font-size: 9px;
    }

    .welcome-bonuses__banner-offer-value {
        font-size: 32px;
    }

    .welcome-bonuses__banner-offer-unit {
        font-size: 16px;
    }

    .welcome-bonuses__list {
        gap: 6px;
        flex-direction: row;
    }

    .welcome-bonuses__item {
        padding: 8px;
        flex: 1;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .welcome-bonuses__content-img-wrap {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .welcome-bonuses__item-img {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .welcome-bonuse-header {
        display: none;
    }

    .welcome-bonuses-buttons {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .checkbox-on-off__pseudo-block {
        width: 36px;
        height: 20px;
    }

    .checkbox-on-off__pseudo-block-icon {
        width: 16px;
        height: 16px;
        top: 2px;
        left: 2px;
    }

    .checkbox-on-off__ch:checked + .checkbox-on-off__pseudo-block .checkbox-on-off__pseudo-block-icon {
        left: 18px;
    }

    .welcome-bonuses__promocode-form {
        margin-top: 6px;
    }

    .promocode-form__input .input-field__wrap {
        height: 38px;
    }

    .promocode-form__ic-wr {
        width: 32px;
        height: 32px;
    }

    .registration-form__panel:not(.registration-form__panel--bonuses) {
        padding: 18px 15px 20px;
    }

    .registration-form__title {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .registration-form__header {
        margin-bottom: 12px;
    }

    .registration-form__form {
        gap: 15px;
    }

    .registration-form__inputs {
        gap: 10px;
    }

    .input-field__wrap {
        height: 48px;
    }

    .input-field__prepend-icon,
    .input-field__pseudo-pas-eye {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .input-field__input {
        font-size: 14px;
    }

    .input-field__label-anim {
        font-size: 14px;
        left: 48px;
    }

    .input-field__input:focus + .input-field__label-anim,
    .input-field__input:not(:placeholder-shown) + .input-field__label-anim {
        left: 44px;
    }

    .country-select,
    .custom-select {
        height: 48px;
    }

    .country-select__flag,
    .custom-select__icon-wr,
    .country-select__arrow,
    .custom-select__arrow {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .btn--primary-b {
        height: 48px;
        font-size: 15px;
    }

    .registration-form__selects {
        gap: 8px;
    }

    .reg-social {
        margin-top: 15px;
        gap: 12px;
    }

    .social-icon {
        width: 42px;
        height: 42px;
    }

    .registration-form__login,
    .registration-form__agreement {
        margin-top: 15px;
    }

    .registration-form__agreement {
        gap: 10px;
    }

    .checkbox__pseudo-label {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .register-modal-backdrop {
        padding: 3px;
        align-items: flex-start;
    }

    .registration-form__wrapper {
        border-radius: 8px;
        max-height: 96vh;
        margin-top: 5px;
    }

    .registration-form__panel--bonuses {
        padding: 8px;
        max-height: 100px;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }

    .welcome-bonuses {
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }

    .welcome-bonuses__banner {
        flex: 0 0 auto;
        width: 70px;
        height: 70px;
        margin-bottom: 0;
        border-radius: 10px;
    }

    .welcome-bonuses__banner-badge {
        font-size: 7px;
        padding: 2px 5px;
        top: 4px;
        left: 4px;
    }

    .welcome-bonuses__banner-offer-value {
        font-size: 24px;
    }

    .welcome-bonuses__banner-offer-unit {
        font-size: 12px;
    }

    .welcome-bonuses__list {
        gap: 6px;
        flex: 1;
        display: flex;
        flex-direction: row;
    }

    .welcome-bonuses__item {
        padding: 6px;
        border-radius: 8px;
        flex-direction: row;
        align-items: center;
        gap: 6px;
    }

    .welcome-bonuses__content-img-wrap {
        width: auto;
        justify-content: flex-start;
    }

    .welcome-bonuses__item-img {
        width: 32px;
        height: 32px;
        font-size: 16px;
        border-radius: 8px;
    }

    .welcome-bonuses-buttons {
        width: auto;
        justify-content: flex-end;
    }

    .checkbox-on-off__pseudo-block {
        width: 36px;
        height: 20px;
    }

    .checkbox-on-off__pseudo-block-icon {
        width: 16px;
        height: 16px;
        top: 2px;
        left: 2px;
    }

    .checkbox-on-off__ch:checked + .checkbox-on-off__pseudo-block .checkbox-on-off__pseudo-block-icon {
        left: 18px;
    }

    .welcome-bonuses__item-status {
        width: 16px;
        height: 16px;
        bottom: -3px;
        right: -3px;
        border-width: 2px;
    }

    .welcome-bonuses__promocode-form {
        display: none;
    }

    .registration-form__panel:not(.registration-form__panel--bonuses) {
        padding: 15px 10px;
    }

    .registration-form__title {
        font-size: 20px;
    }

    .registration-form__form {
        gap: 12px;
    }

    .registration-form__inputs {
        gap: 8px;
    }

    .input-field__wrap {
        height: 44px;
    }

    .input-field__prepend-icon,
    .input-field__pseudo-pas-eye {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }

    .input-field__input {
        font-size: 13px;
        padding: 0 12px 0 0;
    }

    .input-field__label-anim {
        font-size: 13px;
        left: 44px;
    }

    .input-field__input:focus + .input-field__label-anim,
    .input-field__input:not(:placeholder-shown) + .input-field__label-anim {
        font-size: 11px;
        left: 40px;
    }

    .registration-form__selects {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .country-select,
    .custom-select {
        height: 44px;
    }

    .country-select__flag,
    .custom-select__icon-wr,
    .country-select__arrow,
    .custom-select__arrow {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }

    .country-select__select,
    .custom-select__select {
        font-size: 14px;
    }

    .btn--primary-b {
        height: 44px;
        font-size: 14px;
        letter-spacing: 0.5px;
    }

    .registration-form__close {
        top: 6px;
        right: 6px;
    }

    .registration-form__close-icon-wr {
        width: 32px;
        height: 32px;
    }

    .registration-form__close-icon {
        font-size: 18px;
    }

    .reg-social {
        margin-top: 12px;
        gap: 10px;
    }

    .reg-social__separator {
        font-size: 12px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

    .social-icon__icon {
        font-size: 16px;
    }

    .registration-form__login {
        margin-top: 12px;
        font-size: 12px;
    }

    .registration-form__agreement {
        gap: 8px;
        margin-top: 12px;
        margin-bottom: 90px; /* Space for mobile bottom navigation */
        padding-bottom: 10px;
    }

    .checkbox__pseudo-block {
        width: 18px;
        height: 18px;
    }

    .checkbox__pseudo-label {
        font-size: 11px;
        line-height: 1.4;
    }
}

/* Scrollbar Styling */
.registration-form__panel--bonuses::-webkit-scrollbar,
.registration-form__panel:not(.registration-form__panel--bonuses)::-webkit-scrollbar {
    width: 6px;
}

.registration-form__panel--bonuses::-webkit-scrollbar-track,
.registration-form__panel:not(.registration-form__panel--bonuses)::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.registration-form__panel--bonuses::-webkit-scrollbar-thumb,
.registration-form__panel:not(.registration-form__panel--bonuses)::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.3);
    border-radius: 3px;
}

.registration-form__panel--bonuses::-webkit-scrollbar-thumb:hover,
.registration-form__panel:not(.registration-form__panel--bonuses)::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.5);
}
