@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Regular.otf');
    font-weight: 400;
}


@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Medium.otf');
    font-weight: 500;
}


@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Bold.otf');
    font-weight: 700;
}


body {
    background-color: #000000;
}


.container {
    margin: 0 auto;
    max-width: 753px;
}

.section {
    padding: 116px 0 311px 0;
    background: #000000 url('../backgrounds/autorization-bg.png') no-repeat center center/cover;
}

.section__wrapper {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.autorization__logo {
    margin-bottom: 180px;
}

.autorization__logo svg {
    width: 150px;
    height: 161.43px;
}

.autorization-form {
    width: 635px;
    border: 2px solid #0AA537;
    border-radius: 12px;
}

.autorization-form__wrapper {
    padding: 40px 72px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.autorization-form__input {
    position: relative;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: #757575;
    padding: 10px 43px;
    width: 100%;
    border-radius: 12px;
}

.autorization-form__login, .autorization-form__password {
    position: relative;
    width: 100%;
}

.autorization-form__login {
    margin-bottom: 16px;
}

.autorization-form__password:after,  .autorization-form__login:after{
    position: absolute;
    top: 11px;
    left: 13px;
    content: "";
    display: block;
    width: 15px;
    height: 18px;
}

.autorization-form__password:after {
    background: url('../icons/password-icon.svg');
}

.autorization-form__login:after {
    background: url('../icons/login-icon.svg');
}

.autorization-form__buttons-wrapper {
    margin-top: 37px;
    align-self: flex-start;
    display: flex;
    align-items: center;
    width: 100%;
}
.autorization-form__link {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: #0AA537;
    margin-right: 65px;
}
.form-submit {
    padding: 10px 64px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #FFFFFF;
    background-color: #0AA537;
    border-radius: 12px;
    cursor: pointer;
}

.section-title {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 44px;
    color: #FFFFFF;
}

.section__text {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 27.46px;
    line-height: 33px;
    color: #FFFFFF;
    opacity: 0.8;
}

.section__section__title {
    margin-bottom: 36px;
}

.section__text-wrapper {
    margin-bottom: 88px;
}

.section__back-line {
    margin-bottom: 89px;
}

.section__text--unable-copy {
    -ms-user-select: none; 
    -moz-user-select: none; 
    -webkit-user-select: none; 
    user-select: none; 
}


@media screen and (max-width: 1650px) {
    
    .section {
        padding-top: 50px;
    }

    .autorization__logo {
        margin-bottom: 80px;
    }

    .section-title {
        line-height: 10px;
        font-size: 28px;
    }

    .section__text {
        font-size: 18px;
    }

    .autorization__logo svg {
        width: 110px;
        height: 141.43px;
    }

    .section__text-wrapper {
        margin-bottom: 80px;
    }
}

@media screen and (max-width: 768px) {
    .autorization-form {
        width: 635px;
        border: 2px solid #0AA537;
        border-radius: 12px;
    }

    .autorization__logo svg {
        width: 130px;
        height: 141.43px;
    }
    
}

@media screen and (max-width: 768px) {
    .container {
        max-width: 550px;
    }

    .autorization-form {
        width: 100%;
    }

    .section__text-big-wrapper {
        margin-top: 40px;
    }   
    

}


@media screen and (max-width: 576px) {
    
    .container {
        max-width: 300px;
    }

    .autorization-form__buttons-wrapper {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .autorization-form__link {
        order: 2;
        font-size: 12px;
    }

    .autorization__logo {
        margin-bottom: 55px;
    }

    .form-submit {
        order: 1;
        font-size: 14px;
    }

    .autorization-form__input {
        font-size: 14px;
        line-height: 18px;
    }

    .autorization-form__wrapper {
        padding: 25px 42px;
    }

    .autorization-form__link {
        margin-right: 0;
        margin-top: 20px;
    }

    .section-title {
        line-height: 28px;
        font-size: 24px;
    }

    .section__text {
        font-size: 14px;
        line-height: 28px;
    }

}


