/* Общие стили */
body {
    background: url('../img/bg.webp') no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    font-family: Arial, sans-serif;
    color: #fff;
}

/* Декоративные элементы */
.decorative-elements {
    position: relative;
}

.main-decor {
    position: absolute;
    left: 180px;
    max-width: 1100px;
    width: 59vw;
    top: calc((100vw - 1920px) * -0.2); /* Увеличивает top при уменьшении ширины */
}

.x-decor {
    position: absolute;
    top: 75px;
    left: 37%;
    transform: translateX(-50%);
    will-change: transform;
}

.btc-decor {
    position: absolute;
    top: 500px;
    right: 36%;
    width: 150px;
    will-change: transform;
}

/* Хедер */
.header {
    position: absolute;
    top: 0;
    left: 200px;
    padding-top: 36px;
}

.logo {
    width: 90px; /* Можно подправить размер */
}

/* Контейнер с формой */
.registration-container {
    position: absolute;
    right: 200px;
    top: 50%;
    transform: translateY(-50%);
}

/* Футер */
.footer {
    position: absolute;
    display: flex;
    bottom: 20px;
    font-family: Onest;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}


.highlight {
    color: #FF7C1E;
    font-weight: bold;
}

.dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #FF7C1E;
    border-radius: 50%;
    margin: 3px 10px;
}

.kyc {
    display: none;
}

@media (max-width: 1600px) {
    .header {
        left: 80px;
    }
    .main-decor {
        left: 140px; 
    }
    .x-decor {
        left: 38%;
        top: 90px;
    }
    .btc-decor {
        right: 33%;
    }
    .registration-container {
        right: 80px;
    }
}
@media (max-width: 1440px) {
    .header {
        left: 24px;
    }
    .main-decor {
        left: 24px;
    }
    .x-decor {
        left: 28%;
        top: 96px;
        width: 80px;
    }
    .btc-decor {
        right: 45%;
        width: 86px;
        top: 120px;
    }
    .registration-container {
        right: 24px;
    }
}
@media (max-width: 1024px) {
    body {
        position: relative;
        min-height: 1000px;
    }
    .main-decor {
        content: url('../img/main2.webp');
        width: 720px;
        left: 50%;
        transform: translateX(-50%);
        top:84px;
    }
    .header {
        left: 50%;
        transform: translateX(-50%);
        padding-top: 24px;
    }
    .btc-decor {
        right: 53%;
        width: 88px;
        top: 273px;
    }
    .x-decor {
        left: 13%;
        top: 257px;
        width: 80px;
    }
    .registration-container {
        top: 295px;
        transform: translateY(0%); 
    }
    .footer {
        font-size: 16px;
        line-height: 18px;
        bottom: 24px;
    }
}

@media (max-width: 768px) {
    body {
        min-height: auto;
    }
    .header {
        padding-top: 16px;
    }
    .main-decor {
        content: url('../img/main3.webp');
        width: 320px;
        left: 50%;
        transform: translateX(-50%);
        top:72px;
    }
    .x-decor {
        display: none;
    }
    .btc-decor {
        display: none;
    }
    .registration-container {
        top: 465px;
        right: 50%;
        transform: translateX(50%);
    }
    .footer {
        display: none;
    }
    .kyc {
        display: flex;
        flex-direction: column; /* Располагаем элементы сверху вниз */
        align-items: flex-start; /* Выравниваем по левому краю */
        gap: 0px; /* Отступ между пунктами */
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        font-family: Onest;
        color: #fff;
        margin-bottom: 20px;
    }
    .dot {
        margin: 1px 2px;
    }
}