body .profile_form_wrapper {
    margin: 50px 0;
    padding: 50px 65px 16px;
}

p.confirmation_message {
    margin: 50px 0 -30px;
    color: green;
}

.profile_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.profile_form_wrapper {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    padding-right: 15px;
}

.registrationBlock_wrapper {
    padding: 50px 65px;
    background: #C5242A;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    margin: 50px 0;
}

.registrationBlock_wrapper h2 {
    color: #fff;
}

body .form_header {
    display: block;
}

body .profile_wrapper h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 12px;
    font-family: 'Bodoni';
    letter-spacing: 0;
    line-height: 48px;
    display: block;
}

.registration_info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

li.registration_info_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.registration_info_img img {
    height: 130px;
}

li.registration_info_item span.icon-docs {
    margin-right: 9px;
    font-size: 26px;
    line-height: 26px;
}

li.registration_info_item span {
    color: #fff;
    font-size: 16px;
    line-height: 20px;
    font-family: 'Merriweather', serif;
}

li.registration_info_item:not(:last-child) {
    margin-bottom: 20px;
}

.registrationBlock_wrapper a {
    display: block;
    background: #fff;
    text-align: center;
    padding: 16px 20px;
    color: #1B1B1B;
    font-size: 14px;
    margin-top: 20px;
    line-height: 1;
    height: 48px;
}

.registration_info_img {
    margin-right: 30px;
}

body .form-item {
    position: relative;
    margin-bottom: 30px;
}
body .form-item label {
   position: absolute;
   pointer-events: none;
   bottom: 0px;
   font-size: 16px;
   -webkit-transition: all 0.3s ease;
   -o-transition: all 0.3s ease;
   transition: all 0.3s ease;
}

.form-item label span.label{
   color: #1b1b1b80;
}
.form-item input.styler:focus ~ label,
.form-item input.styler:valid ~ label {
   -webkit-transform: translateY(-25px);
       -ms-transform: translateY(-25px);
           transform: translateY(-25px);
   font-size: 14px;
}

.form-item input.styler:focus ~ label span.label,
.form-item input.styler:valid ~ label span.label {
   color: #1b1b1bb3;
}

body .form-item input.styler {
   padding: 12px 0;
   border: none;
   border-bottom: 1px solid #1b1b1b80;
   color: #1b1b1b;
   height: auto;
}

.form-item .underline {
   position: absolute;
   bottom: 0;
   height: 1px;
   width: 100%;
}
.form-item .underline:before {
   position: absolute;
   content: "";
   height: 1px;
   width: 100%;
   background: #1b1b1bb3;
   -webkit-transform: scaleX(0);
       -ms-transform: scaleX(0);
           transform: scaleX(0);
   -webkit-transform-origin: center;
       -ms-transform-origin: center;
           transform-origin: center;
   -webkit-transition: -webkit-transform 0.3s ease;
   transition: -webkit-transform 0.3s ease;
   -o-transition: transform 0.3s ease;
   transition: transform 0.3s ease;
   transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.form-item input:focus ~ .underline:before, .form-item input:valid ~ .underline:before {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
}

.form-item span.label {
   font-family: 'Merriweather';
   color: #1B1B1B
}

form#bform {
    padding-top: 10px;
    display: block;
}

form#bform button.styler.margin-bottom-10 {
   display: block;
   width: 100%;
}

form#bform noindex a {
    text-align: center;
    display: block;
}

span.icon-password {
    position: absolute;
    right: 0;
    bottom: 15px;
    opacity: .5;
    cursor: pointer;
}

span.icon-password img {
    height: 12px;
}

span.icon-password.hide:before {
    content: "";
    width: 105%;
    background: #1b1b1b;
    height: 1.5px;
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
        -ms-transform: translate(-50%, -50%) rotate(-45deg);
            transform: translate(-50%, -50%) rotate(-45deg);
}

body input[name="USER_PASSWORD"].styler {
    padding: 12px 25px 12px 0;
}

@media (max-width: 1399px) {
    body .profile_form_wrapper {
        padding: 50px 45px 16px 0;
    }
    
    body .profile_wrapper .form_header h2 {
        text-align: start;
    }
    
    body .profile_wrapper h2 {
        font-size: 34px;
        line-height: 38px;
    }

    .registrationBlock_wrapper {
        padding: 50px 35px;
    }
}

@media (max-width: 1199px) {
    body .profile_form_wrapper {
        padding: 50px 29px 16px 0;
    }
}

@media (max-width: 991px) {
    .registrationBlock_wrapper {
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: -webkit-max-content auto -webkit-max-content;
        -ms-grid-rows: max-content auto max-content;
        grid-template-rows: -webkit-max-content auto -webkit-max-content;
        grid-template-rows: max-content auto max-content;
        padding: 50px 20px;
    }
    
    .registration_info_img {
        margin-right: 20px;
    }
}

@media (max-width: 870px) {
    body .profile_form_wrapper {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
        padding: 0;
        margin: 50px 0 30px;
    }
    
    .profile_wrapper {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }
    
    .registrationBlock_wrapper {
        margin: 0;
        -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
    }
}

@media (max-width: 765px) {
    .form-box .form-box-item.width-100.margin-bottom-40-xs {
        margin: 0 !important;
    }
}

@media (max-width: 490px) {
    .registration_info_img {
        margin: 0 0 10px;
    }
    
    .registration_info {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    
    ul.registration_info_list {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
    }
}