* {
    box-sizing: border-box;
}
body {
    background: #1f1d1d;
    padding: 0;
    margin: 0;
}
.wrap {
   width: 100%;
    height: 100%;
    position: relative;
}
.top-left {
    width: 400px;
    height: 300px;
    position: absolute;
    top: 50px;
    border-left: 5px solid #fff;
    left: 50px;
    border-top: 5px solid #fff;
}
.bottom-right {
    width: 300px;
    height: 300px;
    position: absolute;
    border-right: 5px solid #fff;
    top: 50px;
    right: 40%;
    border-bottom: 5px solid #fff;
}
.form {
    z-index: 999;
    max-width: 300px;
    left: 50px;
    position: relative;
    top: 50px;
    left: 50px;
    /*//background: whitesmoke;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.form .input-wrap {
    margin: 10px;
    width: 100%;
    position: relative;
}
.form .sendButton {
    width: 100%;
    text-align: center;
    background: #14c72f;
    cursor: pointer;
    height: 40px;
    line-height: 40px;
    color: #fff;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;

}
.form .sendButton.disabled {
    pointer-events: none;
    background: rgba(82, 109, 88, 0.51);
}
.form .input-wrap input {
    width: 100%;
    display: block;
    height: 30px;
    border: none;
    outline: none;
    padding-left: 20px;
    border-radius: 10px;
}
.show-pass {
    position: absolute;
    right: 13px;
    top: 0;
    opacity: 1;
    width: 30px;
    height: 30px;
}
.icon-eye {
    display: block;
    width: 30px;
    height: 30px;
    background-position: center;
    background-repeat: no-repeat;

}
.show-pass .icon-eye {
    background-image: url(/assets/icons/pass-hide.svg)
}
.show-pass.showing .icon-eye {
    background-image: url(/assets/icons/pass-show.svg)

}