/* Help Modal Styles */
.help-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.help-modal {
    width: 400px;
    max-width: 100%;
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: scale(0.7);
    /* уменьшаем масштаб на 20% */
    transform-origin: center center;
}

.modal-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: var(--primary-gradient);
    opacity: 0.8;
    z-index: 0;
    background-size: 200% 100%;
    animation: gradient 3s linear infinite;
}

.modal-header {
    position: relative;
    padding: 25px 30px 20px;
    z-index: 1;
    color: white;
    text-align: center;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.logo-container .logo {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 22px;
    margin-right: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 0;
}

.brand-name {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
}

.help-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.help-content {
    padding: 20px 30px 30px;
    position: relative;
    z-index: 1;
}

.security-note {
    display: flex;
    background-color: rgba(255, 180, 90, 0.1);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 180, 90, 0.2);
}

.security-icon {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-right: 15px;
}

.security-icon svg {
    color: var(--color-primary);
}

.security-text strong {
    display: block;
    color: var(--color-primary);
    margin-bottom: 5px;
    font-size: 15px;
}

.security-text p {
    margin: 0;
    color: var(--text-primary2);
    font-size: 14px;
    line-height: 1.5;
}

.help-modal .steps-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 0;
}

.help-modal .step {
    display: flex;
    gap: 16px;
    width: 100%;
    flex-direction: row;
}

.help-modal .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--primary-gradient);
    color: white;
    font-weight: 600;
    font-size: 16px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 10px var(--accent-shadow);
    margin-bottom: 0;
    background-size: 200% 100%;
    animation: gradient 3s linear infinite;
}

.help-modal .step-content {
    flex: 1;
}

.help-modal .step-content h4 {
    color: var(--color-input);
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.help-modal .step-content p {
    color: var(--text-primary2);
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.command-container {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-top: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

.command-container:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--color-primary);
}

.command-text {
    flex: 1;
    padding: 12px 16px;
    font-family: 'Consolas', monospace;
    color: var(--accent-light);
    font-size: 14px;
    letter-spacing: 0.5px;
}

.copy-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: rgba(255, 180, 90, 0.1);
    border: none;
    border-left: 1px solid var(--border-color);
    color: var(--color-primary);
    cursor: pointer;
    transition: all 0.2s;
}

.copy-button:hover {
    background-color: rgba(255, 180, 90, 0.2);
}

.copy-button svg {
    width: 16px;
    height: 16px;
}

kbd {
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
    color: var(--text-primary);
    display: inline-block;
    font-family: sans-serif;
    font-size: 12px;
    line-height: 1;
    padding: 3px 6px;
    margin: 0 2px;
}

.success-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    background-color: rgba(66, 201, 123, 0.1);
    border: 1px solid rgba(66, 201, 123, 0.2);
    color: var(--success-color);
    padding: 12px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
}

.success-message svg {
    width: 18px;
    height: 18px;
}

.close-help {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.25);
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.2s;
    z-index: 2;
}

.close-help svg {
    width: 20px;
    height: 20px;
}

.close-help:hover {
    background-color: rgba(0, 0, 0, 0.4);
    color: var(--text-primary);
}


/* Success message animation */
#copySuccess.show {
    opacity: 1;
    transform: translateY(-5px);
}

/* Device Verification Screen Styles */
.verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.verification-modal {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid var(--color-primary);
    text-align: center;
    box-shadow: 0 0 30px rgba(255, 180, 90, 0.3);
    max-width: 450px;
    width: 100%;
    animation: pulseIn 0.6s ease-out;
}

@keyframes pulseIn {
    0% {
        transform: scale(0.95);
        opacity: 0;
    }

    70% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.verification-title {
    color: var(--color-primary);
    margin-bottom: 20px;
    font-size: 24px;
}

.verification-description {
    color: var(--text-primary2);
    margin-bottom: 20px;
    font-size: 16px;
}

.device-id-display {
    font-family: monospace;
    font-size: 26px;
    letter-spacing: 2px;
    padding: 20px;
    background-color: var(--text-primary2);
    border-radius: var(--border-radius-sm);
    margin: 25px auto;
    color: var(--text-primary2);
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 180, 90, 0.3);
    position: relative;
    overflow: hidden;
}

.device-id-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 180, 90, 0.2),
            transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -150%;
    }

    50% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(66, 201, 123, 0.15);
    color: var(--success-color);
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-weight: 500;
}

.verification-button {
    background-color: var(--color-primary);
    color: var(--color-background);
    border: none;
    border-radius: var(--border-radius-sm);
    padding: 16px 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 180, 90, 0.3);
    min-width: 150px;
    margin-top: 10px;
}

.verification-button:hover {
    background-color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 180, 90, 0.4);
}

.verification-button:active {
    transform: scale(0.98);
    box-shadow: 0 2px 10px rgba(255, 180, 90, 0.3);
}

@media (max-width: 480px) {
    .seed-phrase-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .recovery-container {
        padding: 30px 20px;
    }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@media (max-width: 768px) {
    * {
        scrollbar-width: none;
    }

    ::-webkit-scrollbar {
        display: none;
    }
}

/* Loading Overlay Styles */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-background);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    transition: opacity 0.5s ease-out;
}

.logo {
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 2px;
}

.logo0 {
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 22px;
    color: var(--color-primary);
    text-align: center;
}

.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 90%;
}

.loading-spinner {
    position: relative;
    width: 70px;
    height: 70px;
    margin-bottom: 30px;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top: 3px solid var(--color-primary);
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
}

.spinner-ring:nth-child(2) {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    border-top: 3px solid var(--text-primary);
    animation: spin 1.8s linear infinite reverse;
}

.spinner-ring:nth-child(3) {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    border-top: 3px solid var(--color-primary);
    animation: spin 2.4s linear infinite;
}

.loading-text {
    margin-bottom: 20px;
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 500;
}

.loading-text1 {
    margin-bottom: 20px;
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

.loading-progress {
    margin-top: 15px;
    width: 200px;
    height: 4px;
    background-color: var(--color-secondary);
    border-radius: 2px;
    overflow: hidden;
}

.loading-progress-bar {
    width: 0%;
    height: 100%;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

.loading-percentage {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    margin-top: 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Code Entry Screen Styles */
.code-modal-container {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    width: 400px;
    max-width: 100%;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    animation: fadeIn 0.5s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.code-title {
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 24px;
    color: var(--color-input);
}

.code-display {
    background-color: var(--color-input);
    padding: 25px;
    border-radius: var(--border-radius-sm);
    margin: 25px auto;
    letter-spacing: 10px;
    font-size: 32px;
    font-weight: 600;
    user-select: none;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    color: var(--text-primary2);
}

.code-input-field {
    width: 100%;
    background-color: var(--color-input);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius-input);
    padding: 15px 20px;
    color: var(--text-primary2);
    font-size: 18px;
    margin-bottom: 25px;
    text-align: center;
    letter-spacing: 5px;
    transition: all 0.3s ease;
}

.code-input-field:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(255, 180, 90, 0.2);
}

.code-input-field::placeholder {
    color: var(--text-primary22);
    opacity: 0.7;
}

.code-button-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.code-button {
    background-color: var(--color-primary);
    color: var(--color-background);
    border: none;
    border-radius: var(--border-radius-sm);
    padding: 15px 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 180, 90, 0.3);
}

.code-button:hover {
    background-color: var(--accent-light);
    transform: translateY(-2px);
}

.refresh-button {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: var(--border-radius-sm);
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.refresh-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: rotate(180deg);
}

.refresh-icon {
    width: 20px;
    height: 20px;
    color: var(--text-primary);
}

.error-message {
    color: var(--color-destructive);
    font-size: 14px;
    margin-top: 10px;
    min-height: 20px;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    20%,
    60% {
        transform: translateX(-5px);
    }

    40%,
    80% {
        transform: translateX(5px);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 180, 90, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 180, 90, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 180, 90, 0);
    }
}

@import url("https://fonts.googleapis.com/css2?family=Urbanist:wght@400;500;600;700&display=swap");

:root {
    /* Основные цвета из MySonic */
    --background: 240 5% 8%;
    --foreground: 0 0% 96%;
    --muted: 240 3.7% 15.9%;
    --muted-foreground: 0 0% 55%;
    --component: 228 7% 14%;
    --component-foreground: 0 0% 100%;
    --component-inner: 210 4% 11%;
    --component-inner-foreground: 0 0% 100%;
    --component-stroke: 228 5% 21%;
    --primary: 26 99% 65%;
    --primary-foreground: 0 0% 100%;
    --secondary: 240 1% 20%;
    --secondary-foreground: 0 0% 100%;
    --success: 121.5 37.4% 58.6%;
    --success-foreground: 0 0% 100%;
    --destructive: 5 100% 60%;
    --destructive-foreground: 0 0% 100%;
    --warning: 39 100% 70%;
    --warning-foreground: 0 0% 100%;
    --card: 228 7% 14%;
    --card-foreground: 0 0% 100%;
    --popover: 228 7% 14%;
    --popover-foreground: 0 0% 100%;
    --input: 210 7% 11%;
    --input-foreground: 0 0% 100%;
    --border: 240 1% 20%;

    /* Конвертация HSL в RGB переменные */
    --color-background: #14141a;
    --color-foreground: #f5f5f5;
    --color-primary: #ffb45a;
    --color-secondary: #34343a;
    --color-card: #252a44;
    --color-input: #ffb45a;
    --color-border: #34343a;
    --color-muted: #28282f;
    --color-muted-foreground: #8c8c8c;
    --color-destructive: #ff5a4f;
    --color-success: #42c97b;

    /* Дополнительные переменные для модальных окон и других элементов */
    --primary-gradient: linear-gradient(135deg, #ffb45a, #ef4444);
    --primary-gradient-reversed: linear-gradient(135deg, #ef4444, #ffb45a);
    --bg-dark: #14141a;
    --bg-card: rgba(20, 20, 26, 0.9);
    --text-primary: #f5f5f5;
    --text-primary2: #14141a;
    --text-secondary: #9ca3af;
    --accent-color: #ffb45a;
    --accent-light: #ffcb67;
    --accent-shadow: rgba(255, 180, 90, 0.3);
    --border-color: #34343a;
    --success-color: #42c97b;

    /* Размеры и радиусы */
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --border-radius-input: 12px;
}

.code-modal-container,
.account-choice-container,
.new-account-container,
.login-account-container,
.help-modal,
.verification-modal,
.recovery-container,
.loading-content {
    background-color: transparent;
    border-radius: 0;
    border: none;
    box-shadow: none;
    animation: none;
    max-width: 100%;
    width: 100%;
}

/* Настройка размеров для разных контейнеров */
.code-modal-container {
    width: 400px;
}

.code-modal-container {
    width: 400px;
}

.account-choice-container {
    width: 450px;
}

.new-account-container,
.login-account-container {
    width: 480px;
}

.verification-modal {
    max-width: 450px;
}

.recovery-container {
    width: 480px;
}

gradient-container1 {
    width: 300px;
}

.help-modal {
    width: 200px;
}

/* Анимация переливания для градиента */
@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Медиа-запрос для мобильных устройств */
@media (max-width: 480px) {
    .gradient-container {
        max-width: 95%;
        padding: 0.3rem;
    }

    .gradient-container1 {
        max-width: 95%;
        padding: 0.3rem;
    }
    
    .gradient-inner {
        padding: 1rem;
    }
}

/* Стили для контейнеров с градиентным фоном */
.gradient-container {
    position: relative;
    padding: 5px; /* Увеличиваем с 0.2rem до 5px для нужного отступа */
    border-radius: 1rem;
    background-image: linear-gradient(90deg, #214e81, #506179, #ed5409, #ffcb67, #ffcb67, #ed5409, #506179, #214e81);
    background-size: 200% 100%;
    animation: gradient 3s linear infinite;
    max-width: calc(100% + 10px); /* Компенсируем добавленный padding */
    margin: -5px; /* Негативный margin чтобы сохранить общий размер */
}

.gradient-container1 {
    position: relative;
    padding: 5px; /* Увеличиваем до 5px */
    border-radius: 1rem;
    background-image: linear-gradient(90deg, #214e81, #506179, #ed5409, #ffcb67, #ffcb67, #ed5409, #506179, #214e81);
    background-size: 200% 100%;
    animation: gradient 3s linear infinite;
    max-width: calc(90% + 10px); /* Компенсируем добавленный padding */
    margin: -5px; /* Негативный margin чтобы сохранить общий размер */
}

/* Обеспечиваем, чтобы внутренний контент занимал правильный размер */
.gradient-inner {
    width: 100%;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    background-color: #1e1e1e;
    border-radius: 0.75rem;
    padding: 1.5rem;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Уточняем позиционирование окон для предотвращения смещения */
.help-overlay, 
.verification-overlay, 
.overlay {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Обеспечиваем, чтобы все модальные окна были правильно центрированы */
.help-modal, 
.verification-modal, 
.code-modal-container,
.account-choice-container,
.new-account-container,
.login-account-container,
.recovery-container {
    position: relative;
}

.card-container {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 0.5rem; /* gap-y-2 */
    align-items: center;
    justify-content: center;
    background-color: var(--bg-card);
    border-radius: 1rem; /* rounded-2xl */
    padding: 1.5rem; /* p-6 */
    height: 100%;
    overflow: hidden;
}

/* Добавить в styles.css */

.gradient-border-container {
    position: relative;
    padding: 1px;
    border-radius: 1rem;
    background-image: linear-gradient(90deg, #214e81, #506179, #ed5409, #ffcb67, #ffcb67, #ed5409, #506179, #214e81);
    background-size: 200% 100%;
    animation: gradient 3s linear infinite;
}

.gradient-border-content {
    background-color: rgba(20, 20, 26, 0.9);
    border-radius: 0.75rem;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Help Modal Styles */
.help-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.help-modal {
    width: 400px;
    max-width: 100%;
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: var(--primary-gradient);
    opacity: 0.8;
    z-index: 0;
}

.modal-header {
    position: relative;
    padding: 25px 30px 20px;
    z-index: 1;
    color: white;
    text-align: center;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.logo-container .logo {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 22px;
    margin-right: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 0;
}

.brand-name {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
}

.help-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.help-content {
    padding: 20px 30px 30px;
    position: relative;
    z-index: 1;
}

.security-note {
    display: flex;
    background-color: rgba(255, 180, 90, 0.1);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 180, 90, 0.2);
}

.security-icon {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-right: 15px;
}

.security-icon svg {
    color: var(--color-primary);
}

.security-text strong {
    display: block;
    color: var(--color-primary);
    margin-bottom: 5px;
    font-size: 15px;
}

.security-text p {
    margin: 0;
    color: var(--color-input);
    font-size: 14px;
    line-height: 1.5;
}

.help-modal .steps-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 0;
}

.help-modal .step {
    display: flex;
    gap: 16px;
    width: 100%;
    flex-direction: row;
}

.help-modal .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--primary-gradient);
    color: white;
    font-weight: 600;
    font-size: 16px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 10px var(--accent-shadow);
    margin-bottom: 0;
}

.help-modal .step-content {
    flex: 1;
}

.help-modal .step-content h4 {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.help-modal .step-content p {
    color: var(--color-input);
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.command-container {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-top: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

.command-container:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--color-primary);
}

.command-text {
    flex: 1;
    padding: 12px 16px;
    font-family: 'Consolas', monospace;
    color: var(--accent-light);
    font-size: 14px;
    letter-spacing: 0.5px;
}

.copy-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: rgba(255, 180, 90, 0.1);
    border: none;
    border-left: 1px solid var(--border-color);
    color: var(--color-primary);
    cursor: pointer;
    transition: all 0.2s;
}

.copy-button:hover {
    background-color: rgba(255, 180, 90, 0.2);
}

.copy-button svg {
    width: 16px;
    height: 16px;
}

kbd {
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
    color: var(--text-primary);
    display: inline-block;
    font-family: sans-serif;
    font-size: 12px;
    line-height: 1;
    padding: 3px 6px;
    margin: 0 2px;
}

.success-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    background-color: rgba(66, 201, 123, 0.1);
    border: 1px solid rgba(66, 201, 123, 0.2);
    color: var(--success-color);
    padding: 12px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
}

.success-message svg {
    width: 18px;
    height: 18px;
}

.close-help {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.25);
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.2s;
    z-index: 2;
}

.close-help svg {
    width: 20px;
    height: 20px;
}

.close-help:hover {
    background-color: rgba(0, 0, 0, 0.4);
    color: var(--text-primary);
}



/* Success message animation */
#copySuccess.show {
    opacity: 1;
    transform: translateY(-5px);
}

/* Device Verification Screen Styles */
.verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.verification-modal {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid var(--color-primary);
    text-align: center;
    box-shadow: 0 0 30px rgba(255, 180, 90, 0.3);
    max-width: 450px;
    width: 100%;
    animation: pulseIn 0.6s ease-out;
}

@keyframes pulseIn {
    0% {
        transform: scale(0.95);
        opacity: 0;
    }

    70% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.verification-title {
    color: var(--color-primary);
    margin-bottom: 20px;
    font-size: 24px;
}

.verification-description {
    color: var(--color-input);
    margin-bottom: 20px;
    font-size: 16px;
}

.device-id-display {
    font-family: monospace;
    font-size: 26px;
    letter-spacing: 2px;
    padding: 20px;
    background-color: var(--color-input);
    border-radius: var(--border-radius-sm);
    margin: 25px auto;
    color: var(--text-primary2);
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 180, 90, 0.3);
    position: relative;
    overflow: hidden;
}

.device-id-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 180, 90, 0.2),
            transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -150%;
    }

    50% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(66, 201, 123, 0.15);
    color: var(--success-color);
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-weight: 500;
}

.verification-button {
    background-color: var(--color-primary);
    color: var(--color-background);
    border: none;
    border-radius: var(--border-radius-sm);
    padding: 16px 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 180, 90, 0.3);
    min-width: 150px;
    margin-top: 10px;
}

.verification-button:hover {
    background-color: var(--accent-light);
    transform: translateY(-2px);
}

/* Account Choice Screen Styles */
.account-choice-container {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    width: 450px;
    max-width: 100%;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    animation: fadeIn 0.5s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.account-choice-title {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 24px;
    color: var(--text-primary);
}

.account-button-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.account-button {
    background-color: var(--color-primary);
    color: var(--color-background);
    border: none;
    border-radius: var(--border-radius-sm);
    padding: 16px 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 180, 90, 0.3);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.account-button:hover {
    background-color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 180, 90, 0.4);
}

.account-button:active {
    transform: scale(0.98);
}

.account-button-secondary {
    background-color: var(--color-secondary);
    box-shadow: 0 5px 15px rgba(52, 52, 58, 0.3);
}

.account-button-secondary:hover {
    background-color: #434349;
    box-shadow: 0 8px 20px rgba(52, 52, 58, 0.4);
}

.icon {
    margin-right: 10px;
    width: 20px;
    height: 20px;
}

.description {
    color: var(--color-input);
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 1.5;
}

/* New Account Screen Styles */
.new-account-container,
.login-account-container {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    width: 480px;
    max-width: 100%;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    text-align: left;
    animation: fadeIn 0.5s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.new-account-title,
.login-account-title {
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 22px;
    color: var(--color-primary);
    text-align: center;
}

.instruction-list {
    list-style-position: inside;
    margin-bottom: 25px;
}

.instruction-list li {
    margin-bottom: 15px;
    color: var(--color-input);
    font-size: 15px;
    position: relative;
    padding-left: 5px;
    line-height: 1.5;
}

.help-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1.5px solid var(--color-primary);
    color: var(--color-primary);
    font-size: 12px;
    margin-left: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.help-icon:hover {
    background-color: var(--color-primary);
    color: var(--color-background);
}

.device-id-input {
    width: 100%;
    background-color: var(--color-input);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius-input);
    padding: 15px 20px;
    color: var(--text-primary2);
    font-size: 16px;
    margin: 10px 0 15px;
    font-family: monospace;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.device-id-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(255, 180, 90, 0.2);
}

.device-id-input::placeholder {
    color: var(--text-primary2);
    opacity: 0.7;
}

.valid-message {
    color: var(--success-color);
    font-size: 14px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.id-error-message {
    color: var(--color-destructive);
    font-size: 14px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.confirm-button {
    background-color: var(--color-primary);
    color: var(--color-background);
    border: none;
    border-radius: var(--border-radius-sm);
    padding: 16px 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 180, 90, 0.3);
    width: 100%;
    display: block;
    text-align: center;
    margin-top: 25px;
}

.confirm-button:hover {
    background-color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 180, 90, 0.4);
}

.confirm-button:active {
    transform: scale(0.98) translateY(0);
}

.button-disabled {
    background-color: var(--color-secondary);
    opacity: 0.7;
    cursor: not-allowed;
}

.button-disabled:hover {
    background-color: var(--color-secondary);
    transform: none;
    box-shadow: 0 5px 15px rgba(52, 52, 58, 0.3);
}

@media (max-width: 480px) {
    .seed-phrase-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .recovery-container {
        padding: 30px 20px;
    }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@media (max-width: 768px) {
    * {
        scrollbar-width: none;
    }

    ::-webkit-scrollbar {
        display: none;
    }
}

/* Loading Overlay Styles */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-background);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    transition: opacity 0.5s ease-out;
}

.logo {
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 2px;
}

.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 90%;
}

.loading-spinner {
    position: relative;
    width: 70px;
    height: 70px;
    margin-bottom: 30px;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top: 3px solid var(--color-primary);
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
}

.spinner-ring:nth-child(2) {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    border-top: 3px solid var(--text-primary);
    animation: spin 1.8s linear infinite reverse;
}

.spinner-ring:nth-child(3) {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    border-top: 3px solid var(--color-primary);
    animation: spin 2.4s linear infinite;
}

.loading-text {
    margin-bottom: 20px;
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 500;
}

.loading-progress {
    margin-top: 15px;
    width: 200px;
    height: 4px;
    background-color: var(--color-secondary);
    border-radius: 2px;
    overflow: hidden;
}

.loading-progress-bar {
    width: 0%;
    height: 100%;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

.loading-percentage {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    margin-top: 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Code Entry Screen Styles */
.code-modal-container {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    width: 400px;
    max-width: 100%;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    animation: fadeIn 0.5s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.code-title {
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 24px;
    color: var(--color-input);
}

.code-display {
    width: 100%;
    background-color: var(--color-input);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-input);
    padding: 15px 20px;
    color: var(--text-primary2);
    font-size: 18px;
    margin-bottom: 25px;
    text-align: center;
    letter-spacing: 5px;
    transition: all 0.3s ease;
}

.code-input-field {
    width: 100%;
    background-color: var(--color-input);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-input);
    padding: 15px 20px;
    color: var(--text-primary2);
    font-size: 18px;
    margin-bottom: 25px;
    text-align: center;
    letter-spacing: 5px;
    transition: all 0.3s ease;
}

.code-input-field:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(255, 180, 90, 0.2);
}

.code-input-field::placeholder {
    color: var(--text-primary2);
    opacity: 0.7;
}

.code-button-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.code-button {
    background-color: var(--color-primary);
    color: var(--color-background);
    border: none;
    border-radius: var(--border-radius-sm);
    padding: 15px 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 180, 90, 0.3);
}

.code-button:hover {
    background-color: var(--accent-light);
    transform: translateY(-2px);
}

.refresh-button {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: var(--border-radius-sm);
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.refresh-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: rotate(180deg);
}

.refresh-icon {
    width: 20px;
    height: 20px;
    color: var(--text-primary);
}

.error-message {
    color: var(--color-destructive);
    font-size: 14px;
    margin-top: 10px;
    min-height: 20px;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    20%,
    60% {
        transform: translateX(-5px);
    }

    40%,
    80% {
        transform: translateX(5px);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 180, 90, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 180, 90, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 180, 90, 0);
    }
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Urbanist', sans-serif;
}

html,
body {
    line-height: 1.5;
    font-feature-settings: "ss01" 1, "ss02" 1, "cv01" 1, "cv02" 1, "cv03" 1, "cv04" 1;
    -webkit-tap-highlight-color: transparent;
    margin: 0;
    padding: 0;
    font-family: 'Urbanist', sans-serif;
    background-color: var(--color-background);
    color: var(--color-foreground);
    height: 100vh;
    overflow: hidden;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-primary);
}

.blur {
    filter: blur(2px);
}

#vimeo-player {
    width: 100vw;
    height: 100vh;
    pointer-events: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(-45deg, #1a1527, #181936, #1c192e, #14141a);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

.recovery-container {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    width: 480px;
    max-width: 100%;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    animation: fadeIn 0.5s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.steps-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    background-color: var(--color-secondary);
    color: var(--color-foreground);
    font-size: 14px;
    font-weight: 600;
}

.step-active .step-number {
    background-color: var(--color-primary);
    color: var(--color-background);
}

.step-line {
    flex-grow: 1;
    height: 2px;
    background-color: var(--color-secondary);
    align-self: center;
}

.step-text {
    color: var(--color-foreground);
    font-size: 14px;
    font-weight: 500;
}

.input-label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
    text-align: left;
}

.dropdown-container {
    position: relative;
    margin-bottom: 20px;
}

.dropdown-button {
    width: 100%;
    padding: 14px 16px;
    background-color: var(--color-input);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-input);
    color: var(--text-primary);
    font-size: 14px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.dropdown-button:hover {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(255, 180, 90, 0.1);
}

.dropdown-button svg {
    width: 16px;
    height: 16px;
    margin-left: 8px;
    transition: transform 0.2s;
}

.dropdown-button.active svg {
    transform: rotate(180deg);
}

.dropdown-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-input);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    margin-top: 4px;
    z-index: 100;
    max-height: 200px;
    overflow-y: auto;
    display: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.dropdown-options.active {
    display: block;
    animation: fadeIn 0.2s ease-out;
}

.dropdown-option {
    padding: 12px 16px;
    color: var(--text-primary);
    cursor: pointer;
    transition: background-color 0.2s;
}

.dropdown-option:hover {
    background-color: rgba(255, 180, 90, 0.1);
}

.dropdown-option.selected {
    background-color: rgba(255, 180, 90, 0.2);
    color: var(--color-primary);
}

.info-box {
    background-color: rgba(255, 180, 90, 0.05);
    border-radius: var(--border-radius-sm);
    padding: 14px 16px;
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
    border: 1px solid rgba(255, 180, 90, 0.15);
}

.info-icon {
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.info-text {
    color: var(--text-primary2);
    font-size: 14px;
}

.seed-phrase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.seed-field-container {
    position: relative;
}

.seed-field {
    width: 100%;
    padding: 12px 30px 12px 30px;
    background-color: var(--color-input);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-input);
    color: var(--text-primary);
    font-size: 14px;
    transition: all 0.3s ease;
}

.seed-field:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(255, 180, 90, 0.1);
}

.word-number {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-primary2);
    font-size: 12px;
}

.eye-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--text-primary2);
    transition: color 0.2s;
}

.eye-icon:hover {
    color: var(--color-primary);
}

.password-container {
    margin-bottom: 24px;
}

.password-group {
    margin-bottom: 20px;
    text-align: left;
}

.password-field-container {
    position: relative;
}

.password-field {
    width: 100%;
    padding: 14px 40px 14px 16px;
    background-color: var(--color-input);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-input);
    color: var(--text-primary);
    font-size: 15px;
    transition: all 0.3s ease;
}

.password-field:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(255, 180, 90, 0.1);
}

.checkbox-container {
    margin-top: 24px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
}

.custom-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background-color: var(--color-input);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    margin-top: 2px;
    transition: all 0.2s ease;
}

.custom-checkbox:checked {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.custom-checkbox:checked::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 6px;
    width: 5px;
    height: 10px;
    border: solid var(--color-background);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label {
    color: var(--text-primary2);
    font-size: 14px;
    line-height: 1.4;
}