.wrap-body {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
}

.wrap-form {
    width: 900px;
    height: 500px;
    display: flex;
    border-radius: 15px;
    overflow: hidden;
    background-color: white;
    position: relative;
    max-width: 100%;
}
.wrap-form .cancel{
    position: absolute;
    top: 20px;
    right: 20px;
    color: gray;
    background-color: transparent;
    border: none;
}
.wrap-form .img {
    width: 50%;
    position: relative;
    background-color: black;
}
.wrap-form .img::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.507);
}

.wrap-form .img img{
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}
.wrap-form .img .text{
    position: absolute;
    bottom: 0px;
    margin: 20px;
    color: white;
    z-index: 3;
}

.wrap-form .form{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.wrap-form .form .container{
    width: 80%;
    margin: auto;
}
.wrap-form .form .form-group{
    position: relative;
    margin: 20px 0px;
}
.wrap-form .form .view{
    border: none;
    background-color: transparent;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
.wrap-form .form button[type="submit"]{
    background-color: #464c55;
    width: 100%;
    height: 35px;
    border: none;
    border-radius: 3px;
    color: white;
    margin-bottom: 20px;
}
.wrap-form .form button[type="submit"]:hover{
    background-color: #393e46;
}
.wrap-form .form a{
    text-decoration: none;
    color: black;
    font-size: 14px;
}

.wrap-form .form label {
    font-size: 14px;
    margin: 20px 0px;
}

.wrap-form .form label a{
    color: #ffbc00;
}

@media screen and (max-width: 960px) {
    .wrap-form {
        height: 400px;
    }
    .wrap-form .form{
        width: 100%;
    }
    .wrap-form .form .container{
        width: 100%;
    }
}
