.pass{
    display: none;
}
.active_pass{
    display: block;
}
.pass_form {
    opacity: 0;
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 300px;
    max-width: 740px;
    width: 740px;
    height:456px;
    z-index: -1;
    border-radius: 10px;
    background-color: #343434;
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.25);
    transition: opacity 0.2s linear 0s;
    transform: translate(-50%, -50%);
    overflow: hidden;
}
.pass_input::-webkit-input-placeholder { /* WebKit browsers */
    color:   white;
}
.pass_input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color:    white;
}
.pass_input::-moz-placeholder { /* Mozilla Firefox 19+ */
    color:    white;
}
.pass_input:-ms-input-placeholder { /* Internet Explorer 10+ */
    color:    white;
}
.massege_error_pass{
    margin-top: 10px;
    text-align: center;
    color:red;
}
.pass::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #CCE4FB;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9;
    opacity: 0.5;
}

.btn_pass{
    width: 193px;
    height: 50px;
    transform: skew(-30deg);
    background: #ffff;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border:none;
    font-weight: 700;
    cursor: pointer;
    border-radius: 24px;
    border-bottom-right-radius: 5.75px;
    border-top-left-radius: 5.75px;
}
.btn_wrap_pass a{
    text-decoration: none;
}

.btn_wrap_pass{

    display: flex;
    justify-content: center;
    align-items: center;
}
.btn_pass span{
    transform: skew(30deg);
    cursor: pointer;
}

/*.btn_pass span:hover{*/
/*    color: #ffff;*/
/*    background-color: crimson;*/
/*    transition: 0.2s linear;*/
/*}*/
.btn_pass:hover{
    color: #ffff;
    background-color: crimson;
    transition: 0.2s linear;
}
.pass_form._active {
    z-index: 10;
    opacity: 1;
    background-color: #3E454F;
}
.pass_input {
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
    color: var(--color-white);
    display: inline-block;
    outline: none;
    height: 40px;
    border: none;
    border-bottom-width: medium;
    border-bottom-style: none;
    border-bottom-color: currentcolor;
    border-bottom: 1px solid var(--color-white);
    background: none;
    padding: 0;
    border-radius: 0;
    width: 100%;
    margin: 0;
    font-feature-settings: 'pnum' on, 'lnum' on;
}
.modal_pass_relative {
    z-index: 1;
    position: relative;

}

.modal_pass_content {
    padding: 84px 156px 120px;
    justify-content: center;

}

/*.modal_pass_content {*/
/*    display: grid;*/
/*    grid-template:*/
/*        "f_header" auto*/
/*        "f_body" auto*/
/*        "f_bottom" auto;*/
/*    padding: 84px 156px 120px;*/
/*    justify-content: center;*/
/*}*/

.modal_pass_header {
    margin-bottom: 43px;

}

.modal_form_content__callback .modal_pass_header {
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    height: 100%;
    grid-area: f_header;
}

.modal_pass_decoration {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 456px;
    width: 740px;
    background: url('/local/templates/main/img/modal_decoration.png') no-repeat center center / cover;
    z-index: -1;
}

.modal_pass_title {
    font-size: 35px;
    font-weight: 700;
    line-height: 1.3;
    color: white;
    font-family: "Gill Sans",sans-serif;
}

.modal_pass_caption {
    color: var(--color-white);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    margin-top: 12px;
}
.modal_pass_body{
    color: #fff;
}
.modal_form_content__callback .modal_pass_body {
    grid-area: f_body;
}

.modal_pass_field {
    color: white;
    position: relative;
    z-index: 0;
    padding-top: 30px;
    padding-bottom: 40px;
    font-family: "Gill Sans",sans-serif;
}

.modal_pass_field + .modal_pass_field {
    margin-top: 30px;
}

.modal_pass_field label {
    position: absolute;
    left: 0;
    top: 12px;
    z-index: -1;
}

.modal_pass_field input:focus + label {
    font-size: 5px;
    opacity: 0;
}

.modal_pass_field input + label {
    transition: all ease 0.2s;
}

.modal_pass_field input:focus {
    text-indent: 0!important;
}

.modal_pass_bottom{
    margin-top: 30px;
}
.modal_form_content__callback .modal_pass_bottom {
    grid-area: f_bottom;
}

.modal_pass_close {
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    z-index: 2;
}

.modal_pass_close > svg {
    transform: rotate(-45deg);
    fill: white;
    stroke: darkslategray;
    transition: .25s;
    stroke: black;
}

.modal_pass_close:hover > svg {
    fill: crimson;
    stroke: white;
}
