@font-face {
    font-family: 'Rawline';
    src: url('./fonts/rawline-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rawline';
    src: url('./fonts/rawline-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rawline';
    src: url('./fonts/rawline-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

html,body{
    overflow-x: hidden
    }
* {
    font-family: 'Rawline';
    margin: 0;
    padding: 0;
    border: 0;
}
*,*:before,*:after{
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
:focus,:active{outline: none;}
a, a:visited, a:hover{text-decoration: none;}

input,button,textarea{font-family:inherit;}
button{cursor: pointer;}
button::-moz-focus-inner {padding:0;border:0;}

ol, ul {list-style: none;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

.wrapper {
    width: 100vw;
    height: 100vh;
    background: url(./imgs/background.webp) center center no-repeat;
    background-size:  cover;
    position: relative;
}
.wrapper__linear-gradient {
    width: 100%;
    height: 100%;
    display: flex;
    background: linear-gradient(rgba(20, 25, 43, 0.66), #14192BA8 66%);
}
.lang {
    position: absolute;
    top: 10px;
    right: 20px;
    display: flex;
    gap: 10px;
}
.lang a {
    color: #fff;
}
.lang a:hover {
    color: #a29e9e;
}
.lang a:active {
    color: #a29e9e;
}
.content {
    margin: auto;
}
.content__title {
    font-weight: 400;
    font-size: 26px;
    line-height: 120%;
    color: #fff;
    margin-bottom: 21px;
}
.content__title > span {
    font-weight: 700;
}
.partner-form {
    display: flex;
    flex-direction: column;
    width: 383px;
    height: auto;
    padding: 30px 20px;
    background-color: #FFFFFF;
    border-radius: 10px;  
}
.partner-form__title {
    margin-bottom: 13px;
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: -0.02em;
    color: #000;
    margin-left: 10px;
}
.partner-form__info {
    margin-bottom: 13px;
    font-weight: 600;
    font-size: 15px;
    line-height: 120%;
    letter-spacing: -0.02em;
    color: #000;
    margin-left: 10px;
    text-align: center;
 }
.partner-form__validation {
    margin-bottom: 13px;
    font-weight: 300;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: -0.02em;
    color: #ff0000;
    margin-left: 10px;
    margin-top: -3px;
 }
.partner-form__block-capcha {
    display: flex;
    margin-bottom: 16px;
    gap: 5px;
    max-width: 100%;
}
.partner-form__block-capcha input {
    margin-bottom: 0;
}
.capcha img {
    max-width: 108px;
    height: 30px;
    cursor: pointer;
}
.partner-form__bottom {
    display: flex;
    gap: 10px;
}
.partner-form__bottom > p {
    margin-left: 10px;
    font-weight: 400;
    font-size: 10px;
    color: #cdcdcd;
    line-height: 1.2;
    letter-spacing: -0.02em;
}
.partner-form input {
    max-height: 30px;
    padding: 7px 10px;
    background: #f3f3f3;
    border-radius: 10px;
    border: 1px solid #f3f3f3;
    width: 100%;
    margin-bottom: 5px;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #000
}
.partner-form input.invalid {
    border: 1px solid #ff0000;
}
.partner-form input::placeholder {
    font-weight: 400;
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #000
}
.block-input {
    flex: 1 1;
}

button {
    max-height: 30px;
    padding: 8px 25px;
    background: #000;
    border-radius: 10px;
    font-weight: 600;
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-align: center;
    color: #fff;
    white-space: nowrap;
}
.d-none{
    display: none;
}
.disabled{
    pointer-events: none;
    opacity: 0.8;
}
@media (max-width:420px) {
    .content {
        margin: auto 10px;
    }
    .partner-form {
        width: 100%;
        padding: 30px 10px;
    }
    .partner-form__title {
        font-size: 18px;
    }
}

@media (max-width:360px) {
    .partner-form {
        padding: 20px 10px;
    }
    .partner-form__title {
        font-size: 18px;
    }
    .partner-form__bottom {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width:290px) {
    .partner-form__title {
        font-size: 16px;
    } 
}