body{
    font-family: Inter, Sans-serif;
}

button{
    border: none;
    cursor: pointer;
}

button:focus{
    outline: none;
}



.page-wrap{
    min-height: auto;
}

.client-background{
    border-top: 1px solid #dadada;    

    background-image: url(/catalog/view/theme/default/img/sign/forms-back1.png), url(/catalog/view/theme/default/img/sign/forms-back2.png);
    background-repeat: no-repeat, no-repeat;
    background-position: 5% center, 95% center;
}

.customer{    
    height: 100vh;
    width: 565px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.customer_height{
    height: calc(100vh - 116px);
    /* background-color: antiquewhite; */
}

.customer__header{
    background-color: #f5f5f5;
    border-radius: 10px;
    margin-bottom: 5px;
    width: 100%;
}
.customer__title{
    font-size: 18px;
    font-weight: bold;    
    text-align: center;
    box-sizing: border-box;
    padding: 21px 0 43px;
}
.customer__main{
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    width: 100%;
    padding: 37px 99px 40px;
    box-sizing: border-box;
}

.customer__button{
    background-color: #de210b;
    color: #fff;  
    padding: 16px 0 20px;
    font-weight: 700;
    font-size: 16px;
    border-radius: 8px;
}

.customer__button:hover{
    color: #fff;
}

.customer__button:not(:last-child){
    margin-bottom: 15px;
}



.registration-form__submit, .customer__button {
    background-color: #de210b;
    color: #fff;
    width: 100%;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 0 16px;
    border-radius: 8px;
    margin-bottom: 14px;
    text-align: center;
}

.form__field {
    position: relative;
}

.form__field label {
    position: absolute;
    color: #9f9f9f;
    font-size: 12px;
    top: 9px;
    left: 15px;
}

.form__field input, .form__field select {
    width: 100%;
    height: 54px;
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    padding: 15px 5px 0 15px;
    color: #1f1f1f;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.2px;
    background-color: #fff;
}