@font-face {
    font-family: Gilroy-ExtraBold;
    src: url(../fonts/Gilroy-ExtraBold.otf);
}

html {
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
    display: block;
}

.wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    background: linear-gradient(253.12deg, #6622E0 21.1%, #8149E6 36.88%, #FFFFFF 109.79%);
    font-family: Gilroy-ExtraBold, sans-serif;
    color: #FFFFFF;
    padding: 0 50px;
}

.header {
    box-sizing: border-box;
    padding: 50px 0;
}

.header-logo {
    width: 8vw;
    height: 4vw;
    background-image: url(../images/logo.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.main {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    flex: 1 0 auto;
    font-size: 1.7vw;
}

.title-container {
    display: flex;
    align-items: center;
    font-size: 2.9vw;
    line-height: 86px;
}

@media screen and (min-width: 2700px) {
    .title-container {
        font-size: 105px;
    }
}

.title-container-text {
    display: flex;
}

.text-container-slider {
    overflow: hidden;
    height: 86px;
    margin-left: 20px;
}

.slider-list {
    color: #000000;
    margin-top: 0;
    padding: 0;
    list-style: none;
    -webkit-animation-name: change;
    -webkit-animation-duration: 8s;
    -webkit-animation-iteration-count: infinite;
    animation-name: change;
    animation-duration: 8s;
    animation-iteration-count: infinite;
}

.list-item {
    margin: 0;
    text-align: start;
}

@-webkit-keyframes change {
    0%,
    15% {
        transform: translate3d(0, 0, 0);
    }
    23%,
    38% {
        transform: translate3d(0, -20%, 0);
    }
    46%,
    61% {
        transform: translate3d(0, -40%, 0);
    }
    69%,
    84% {
        transform: translate3d(0, -60%, 0);
    }
    92%,
    100% {
        transform: translate3d(0, -80%, 0);
    }
}

@-o-keyframes change {
    0%,
    15% {
        transform: translate3d(0, 0, 0);
    }
    23%,
    38% {
        transform: translate3d(0, -20%, 0);
    }
    46%,
    61% {
        transform: translate3d(0, -40%, 0);
    }
    69%,
    84% {
        transform: translate3d(0, -60%, 0);
    }
    92%,
    100% {
        transform: translate3d(0, -80%, 0);
    }
}

@-moz-keyframes change {
    0%,
    15% {
        transform: translate3d(0, 0, 0);
    }
    23%,
    38% {
        transform: translate3d(0, -20%, 0);
    }
    46%,
    61% {
        transform: translate3d(0, -40%, 0);
    }
    69%,
    84% {
        transform: translate3d(0, -60%, 0);
    }
    92%,
    100% {
        transform: translate3d(0, -80%, 0);
    }
}

@keyframes change {
    0%,
    15% {
        transform: translate3d(0, 0, 0);
    }
    23%,
    38% {
        transform: translate3d(0, -20%, 0);
    }
    46%,
    61% {
        transform: translate3d(0, -40%, 0);
    }
    69%,
    84% {
        transform: translate3d(0, -60%, 0);
    }
    92%,
    100% {
        transform: translate3d(0, -80%, 0);
    }
}

.title-logo {
    display: flex;
    align-items: center;
    margin: 0 20px;
}

.title-logo-words {
    display: inline-block;
    font-size: 1.8vw;
    line-height: 2.2vw;
}

.word-fiat {
    writing-mode: tb;
    transform: rotate(-180deg);
}

.word-crypto {
    writing-mode: tb;
}

.title-logo-img {
    width: 5.8vw;
    height: 5.8vw;
    background-image: url(../images/circle.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 5px;
}

.description-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 65%;
    line-height: 2.5vw;
    text-align: center;
    padding: 30px 25px;
    box-sizing: border-box;
    margin-bottom: 20px;
}

.description-first-line {
    margin-bottom: 20px;
}

.register-container {
    max-width: 65%;
    background-color: #FFFFFF;
    padding: 4vw 4.5vw;
    text-align: center;
    box-sizing: border-box;
}

.register-container-text {
    display: inline-block;
    color: #000000;
    line-height: 2.5vw;
    margin-bottom: 35px;
}

.register-container-form {
    display: flex;
    border-radius: 42px;
    overflow: hidden;
}

.register-input {
    width: 70%;
    padding: 1.5vw 1.5vw 1.5vw 2.5vw;
    background: #000000;
    outline: none;
    font-size: 1.5vw;
    color: #FFFFFF;
    border: none;
    border-radius: 42px 0 0 42px;
    font-family: Gilroy-ExtraBold, sans-serif;
}

.register-input::placeholder {
    color: #FFFFFF;
    text-align: center;
}

.register-input:focus::placeholder {
    color: transparent;
}

.register-button {
    width: 30%;
    background: #6622E0;
    color: #FFFFFF;
    padding: 1.5vw;
    text-align: center;
    font-size: 1.5vw;
    font-family: Gilroy-ExtraBold, sans-serif;
    border: none;
    border-radius: 0 42px 42px 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.register-button:disabled {
    opacity: 1;
}
