body {
    scroll-behavior: smooth;
    overflow-x: hidden;
    background-color: #fff;
}

.forgot {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
}

.forgot .back-btn {
    position: absolute;
    top: 4rem;
    left: 5rem;
    font-size: 2rem;
    background: var(--white);
    height: 4.5rem;
    width: 4.5rem;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0px 4px 10px 0px #0000000F;
    cursor: pointer;
}

.forgot .content-box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 100%;
}

.forgot .content-box .form-box {
    width: 65%;
}

.forgot .content-box .form-box h2 {
    color: var(--black2);
    font-weight: 700;
    font-size: 32px;
    margin-bottom: .8rem;
    display: inline-block;
    line-height: 4rem;
    letter-spacing: -1%;
}

.forgot .content-box .form-box p {
    color: var(--black2);
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    opacity: 50%;
    margin-bottom: 3.2rem;
}

.forgot .content-box .form-box .input-box span {
    font-size: 1.4rem;
    margin-bottom: .8rem;
    display: inline-block;
    color: var(--black2);
    font-weight: 500;
}

.forgot .content-box .form-box .input-box input {
    width: 100%;
    padding: 1.2rem 1.6rem;
    outline: none;
    font-weight: 500;
    border: .1rem solid #eee;
    outline: .1rem solid #eee;
    font-size: 1.6rem;
    color: var(--black2);
    background: transparent;
    border-radius: .8rem;
}

.forgot .content-box .form-box .input-box input[type="email"],
.forgot .content-box .form-box .input-box input[type="password"] {
    opacity: .5;
}

.forgot .content-box .form-box .input-box input[type="submit"] {
    /*background: var(--green);*/
    background: #FFF76B;
    /*color: var(--white);*/
    color: #1C1C1C;
    outline: none;
    border: none;
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    margin: 3.2rem 0;
    padding: 1.2rem 2.4rem;
    border-radius: 10rem;
    transition: .2s linear background;
}

.forgot .content-box .form-box .input-box input[type="submit"]:hover {
    background: var(--green5);
}

.forgot .img-box {
    position: relative;
    width: 50%;
    height: 100%;
}

.forgot .img-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.forgot-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--white);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 3%;
    border-radius: 50%;
    z-index: 1;
}

.forgot-logo span {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--black2);
    margin-top: -1.3rem;
}

/*.forgot-logo img {*/
/*    width: 10rem;*/
/*    height: 10rem;*/
/*}*/

@media (max-width: 768px) {
    .forgot .img-box {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .forgot .back-btn {
        z-index: 1;
        top: 7.7rem;
        left: 5rem;
    }

    .forgot .content-box {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .forgot .content-box .form-box {
        width: 100%;
        padding: 3rem;
        background: var(--white);
        margin: 0rem 1rem;
        border-radius: 1rem;
    }

}