/* Login - Signup */

@media only screen and (min-width: 1051px) {

    .login_form,
    .signup_form,
    .reset_form {
        max-width: 450px;
    }

    .reset_container {
        left: 50%;
        position: absolute;
        width: 48%;
        top: 30px;
    }

    .login_container {
        width: 100%;
    }

    .login_box {
        display: grid;
        height: 750px;
    }
}

@media only screen and (max-width: 1050px) {

    .login_form,
    .signup_form,
    .reset_form {
        max-width: 350px;
    }

    .reset_container {
        background: #fff;
        border-radius: 15px 15px 15px 15px;
        box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.3);
        left: 0;
        position: relative;
        width: calc(380px - 50px);
        width: unset;
    }

    .login_container {
        width: unset;
    }

    .login_box {
        display: block;
        height: unset;
        max-height: 750px;
        min-height: unset;
    }

    .img_box {
        display: none;
    }
}

@media only screen and (max-width: 450px) {
    .reset_container {
        width: 100%;
    }
}



.login_container {
    align-self: center;
    height: fit-content;
    justify-self: center;
    max-width: 850px;
    padding: 1em;
    position: relative;
    direction: ltr;
}

.img_box {
    background-image: url('../images/sunset.jpg');
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
    grid-area: b;
    height: 750px;
    left: 0;
    position: absolute;
    width: 50%;
    z-index: 600;
}

.login_box {
    grid-template-columns: 425px auto;
    max-width: 850px;
    width: 100%;
    grid-template-areas: "a c";
    border-radius: 15px 15px 15px 15px;
    border: 0px solid #000000;
    box-shadow: 0px 2px 6px 0px rgb(0 0 0 / 30%);
    overflow: hidden;
    box-shadow: 0px 2px 6px 0px rgb(90 90 90);
    background: #bbc7e1;
}


.login_box .form_box {
    display: grid;
    grid-area: c;
    height: fit-content;
    transition: all 250ms ease-in-out;
}

.login_box .second_form_box {
    display: grid;
    grid-area: a;
    height: fit-content;
    max-height: 750px;
    transition: all 250ms ease-in-out;

}

.login_form h1,
.signup_form h1,
.reset_form h1 {
    font-size: 2.5em;
    font-weight: 300;
    line-height: 40px;
}

.login_form,
.signup_form,
.reset_form {
    align-content: flex-start;
}

.forgot-password {
    font-size: 16px;
    font-weight: 300;
    line-height: 20px;
}

.forgot-password:hover {
    text-decoration: underline;
}

.log-status {
    text-align: center;
}


.check_account,
.forgot-password {
    height: 15px;
    line-height: 15px;
    padding: 15px 0px;
    text-shadow: none;
}

.check_account:hover,
.forgot-password a:hover {
    color: rgb(230 80 65);
    cursor: pointer;
    text-decoration: underline;
}

.anchor {
    color: rgba(255, 255, 255, 0.7);
    margin: 15px auto;
    text-align: left;
    text-shadow: 2px 2px 2px #111;

}

.anchor:hover {
    color: var(--text-color);
}

.check-terms {
    font-weight: 300;
    color: #f1f1f1;
    width: 82%;
}


.reset_container {
    background-color: transparent;
    display: none;
    z-index: 600;
}

.signup_form {
    display: none;
}