.form-wrapper {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.4);
    opacity: 0;
    transition: .3s ease-in-out all;
    display: none;
}
.form-wrapper.active {
    display: block;
    opacity: 1;
}

.form-wrapper .form-window {
    position: absolute;
    width: 400px;
    background: #fff;
    padding: 25px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}

.form-wrapper .form-window__close{
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 30px;
    line-height: 30px;
    color: #000;
    cursor: pointer;
}

.form-wrapper .title_form {
    margin: 0;
    font-size: 26px;
    font-family: "BrutalType_B";
    color: #131313;
}

.form-wrapper .title_black {
    margin-top: 2px;
    font-size: 17px;
    line-height: 21px;
    color: #131313;
    margin-bottom: 30px;
}

.form-wrapper .bright_text{
    font-family: "BrutalType_B";
    color: #005bae;
}

.form-wrapper input[type="text"], .form-wrapper input[type="password"] {
    height: 45px;
    line-height: 45px;
}

.form-wrapper input[type="button"] {
    width: 100%;
}