@font-face {
    font-family: 'OpenSans-Light';
    src: url(../fonts/OpenSans-Light.ttf);
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'OpenSans-Regular';
    src: url(../fonts/OpenSans-Regular.ttf);
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'OpenSans-Medium';
    src: url(../fonts/OpenSans-Medium.ttf);
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'OpenSans-Bold';
    src: url(../fonts/OpenSans-Bold.ttf);
    font-weight: 700;
    font-style: normal;
}

html{
    box-sizing: border-box;
    /* overflow: hidden; */
}

*,
*::before,
*::after{
    box-sizing: border-box;
}
button {
    padding: 0;
    border: none;
    font: inherit;
    color: inherit;
    background-color: transparent;
    cursor: poOpenSans;
}

a{
    color: inherit;
    text-decoration: none;
}

li{
    list-style: none;
}

img{
    max-width: 100%;
}

body{
    font-family: 'OpenSans-Regular';
    color: #5656FC;
    background-color: #FFF;
    font-weight: 400;
    position: relative;
    overflow: hidden;
}


.logo{
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    color: #5656FC;
}
.logo img{
    width: 260px;
}
.jss33{
    margin-top: 8px;
}
.title{
    font-family: 'OpenSans-Bold';
    font-weight: 700;
    font-size: 32px;
}
.main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh; 
    margin: 0; 
}

.slider {
    max-width: 500px;
}
.swiper {
    width: 100%;
    height: 100%;
    /* padding-bottom: 60px; */
}
.swiper-wrapper{
    margin-top: 10px;
    max-height: 300px;
}
.swiper-slide {    
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.swiper-pagination-bullet{
    width: 12px;
    height: 12px;
}
.swiper-slide img {
    display: block;
    object-fit: cover;
}
.swiper-text{
    text-align: center;
    max-width: 300px;
    margin: 0 auto;
    margin-top: 8px;
}
.subtitle{
    line-height: 125%;
    font-family: 'OpenSans-Light';
    font-weight: 300;
    font-size: 22px;
    color: rgba(0, 0, 0, 0.87);
}
.form--container{
    margin-top: 32px;
    width: 100%;
}
.form {
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: rgba(235, 235, 235, 0.7);
    padding: 24px;
    width: 420px;
    text-align: center;
    border-radius: 16px;
}
.title-sm {
    font-family: 'OpenSans-Medium';
    font-weight: 500;
    color: #000;
    font-size: 22px;
}
.input {
    color: rgba(0, 0, 0, 0.87);
    background-color: rgb(223, 223, 223);
    border: 0px solid;
    border-radius: 8px;
    padding: 16px 24px;
    font-size: 14px;
}
.input:focus-visible{
    outline: none;
}
.btn:disabled{
    pointer-events: none;
    color: #9595B1;
    background-color: rgba(0, 0, 0, 0.12);
}
.btn{
    cursor: pointer;
    font-family: 'OpenSans-Bold';
    font-weight: 700;
    font-size: 18px;
    border-radius: 10px;
    padding: 18px 36px;
    background-color: #5656FC;
    color: #fff;
    transition: color .3s ease, background-color .3s ease;
}
.btn:hover{
    background-color: #7272FB;
}
.error-download .title-sm{
    color: #fc5656;
}
.done-download .title-sm{
    color: #43a337;
}

@media screen and (max-width:767px) {
    .slider{
        max-width: 420px;
    }
    .logo img{
        width: 200px;
    }
    .swiper{
        padding-bottom: 60px;
    }
}
@media screen and (max-width:440px) {
    .logo img{
        width: unset;
    }
    .main{
        padding-top: 40px;
        justify-content: start;
    }
    .slider{
        max-width: 320px;
    }
    .swiper-wrapper {
        max-height: 240px;
    }
    .swiper {
        padding-bottom: 50px;
    }
    .form{
        width: 80%;
    }
}