
.authorization-modal {
    width: 400px;
    overflow: auto;
    max-height: 90vh;
    border-radius: 20px;
    padding: 30px;
    font-family: 'apercu_pro', sans-serif;
    color: #475669;
    margin: 20px auto;
    background-color: #f1ebd3;
    position: relative;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

.authorization-modal .authorization-modal__logo {
    background: url(https://tophotels.ru/csstx/images/logotypes/tophotels.svg) center/contain no-repeat;
    display: block;
    width: 100%;
    height: 41px;
    margin-bottom: 20px;
    margin-top: 10px;
}


.authorization-modal .bth__inp {
    padding: 23px 15px 7px 15px;
    border-radius: 5px;
}

.authorization-modal .bth__inp-block label {
    position: absolute;
    font-size: 13px;
    top: 4px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    color: #999;
    left: 16px;
}

.authorization-modal .bth__inp-block {
    width: 100%;
    margin-top: 20px;
    border-radius: 5px;
    padding: 0;
    height: 55px;
}

.authorization-modal .bth__btn.bth__btn--white:hover {
    background-color: #facba8 !important;
    color: #e05c00 !important;
}

.authorization-modal .bth__btn.bth__btn--white {
    border-color: transparent !important;
    color: #475669;
    background-color: rgba(255, 255, 255, 0.6) !important;
}

.authorization-modal .bth__btn {
    margin: 20px auto 0 auto;
    width: 100%;
    display: block;
    font-weight: bold;
    border-radius: 5px;
}

.authorization-modal .authorization-modal__remind:hover {
    color: #e03a3a;
}

.authorization-modal .authorization-modal__remind {
    font-size: 13px;
    text-align: center;
    display: block;
    text-transform: uppercase;
    color: #666;
    margin-top: 30px;
}

.authorization-modal-wrapper {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.49);
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;;
}


.authorization-modal .has-error .hint-block {
    position: absolute;
    right: 9px;
    top: 0;
    height: 100%;
    background: #fff;
    padding-top: 18px;
    width: 30px;
    text-align: center;
}

.authorization-modal .authorization-modal__cross {
    position: absolute;
    width: 20px;
    height: 20px;
    cursor: pointer;
    top: 20px;
    right: 20px;
    background-image: url(https://tophotels.ru/csstx/i/cross-thin-grey.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.authorization-modal .authorization-modal__cross:hover {
    background-image: url(https://tophotels.ru/csstx/i/cross-thin.svg);
}

.authorization-modal .has-error label {
    color: #e03a3a;
}

@media screen and (max-width: 400px) {
    .authorization-modal {
        width: 300px;
        padding: 30px 15px;
        height: auto;
        border-radius: 15px;
    }

    .authorization-modal .authorization-modal__remind {
        margin-top: 25px;
    }

}