body {
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding: 0;
}

.subbody {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    /* padding-top: 30px; */
    background-color: #f3f4f7;
    position: relative;
}

    .subbody:before {
        content: "";
        background-image: url('../images/login-bg-image.png');
        background-size: 25rem;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        opacity: .4;
    }

.container {
    position: relative;
    max-width: 890px;
    width: 100%;
    background: #fff;
    padding: 40px 30px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    perspective: 2700px;
    border-radius: 10px;
}

    .container .cover {
        position: absolute;
        top: 0;
        left: 50%;
        height: 100%;
        width: 50%;
        z-index: 98;
        transition: all 1s ease;
        transform-origin: left;
        transform-style: preserve-3d;
        overflow: hidden;
        border-radius: 0px 10px 10px 0px;
    }

    .container #flip:checked ~ .cover {
        transform: rotateY(-180deg);
    }

    .container .cover .front,
    .container .cover .back {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
    }

.cover .back {
    transform: rotateY(180deg);
    backface-visibility: hidden;
}

.container .cover::before,
.container .cover::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    /* background: #343a40e0; */
    opacity: 0.3;
    z-index: 12;
}

.container .cover::after {
    opacity: 0.3;
    transform: rotateY(180deg);
    backface-visibility: hidden;
}

.container .cover img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: 10;
}

.container .cover .text {
    position: absolute;
    z-index: 130;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cover .text .text-1,
.cover .text .text-2 {
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

.cover .text .text-2 {
    font-size: 15px;
    font-weight: 500;
}

.container .forms {
    height: 100%;
    width: 100%;
    background: #fff;
}

.container .form-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form-content .login-form,
.form-content .signup-form {
    width: calc(100% / 2 - 25px);
}

.forms .form-content .title {
    position: relative;
    font-size: 24px;
    font-weight: 500;
    color: #333;
}

    .forms .form-content .title:before {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        height: 3px;
        width: 25px;
        background: #7d2ae8;
    }

.forms .signup-form .title:before {
    width: 20px;
}

.forms .form-content .input-boxes {
    margin-top: 30px;
}

.forms .form-content .input-box {
    display: flex;
    align-items: center;
    height: 50px;
    width: 100%;
    margin: 2px 0;
    position: relative;
}

.form-content .input-box input {
    height: 79%;
    width: 100%;
    /* border: none; */
    padding: 0 46px;
    /* font-size: 16px; */
    font-weight: 400;
    border: 1px solid rgb(229 231 235);
    transition: all 0.3s ease;
    /* border-radius: 7px; */
}

    .form-content .input-box input:focus,
    .form-content .input-box input:valid {
        border-color: #e5e7eb;
        border-radius: 3px;
    }

.form-content .input-box i {
    position: absolute;
    color: #18191a;
    font-size: 17px;
    padding: 0px 0px 0px 8px;
    cursor: pointer;
    background-color: #e5e7eb;
    padding: 12px 13px;
    left: 0;
    top: 5px;
}

.forms .form-content .text {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin: 11px 5px;
}

    .forms .form-content .text a {
        text-decoration: none;
    }

        .forms .form-content .text a:hover {
            text-decoration: underline;
        }

.forms .form-content .button {
    color: #fff;
    margin-top: 40px;
}

    .forms .form-content .button input {
        color: #fff;
        background: #0176d3;
        border-radius: 6px;
        padding: 0;
        cursor: pointer;
        transition: all 0.4s ease;
    }

        .forms .form-content .button input:hover {
            background: #fdc00f;
            color: black;
            font-weight: 600;
        }

.forms .form-content label {
    color: #5b13b9;
    cursor: pointer;
    font-size: 14px;
}

    .forms .form-content label:hover {
        text-decoration: underline;
    }

.forms .form-content .login-text,
.forms .form-content .sign-up-text {
    text-align: center;
    margin-top: 25px;
}

.container #flip {
    display: none;
}

.form .auth {
    margin: 35px 0 20px 0;
    font-size: 19px;
    color: grey;
}

.links {
    display: flex;
    cursor: pointer;
}

.facebook, .google {
    height: 40px;
    width: 100%;
    border: 1px solid silver;
    border-radius: 3px;
    margin: 0 10px;
    transition: .4s;
}

    .facebook:hover {
        border: 1px solid #4267B2;
    }

    .google:hover {
        border: 1px solid #dd4b39;
    }

    .facebook i, .facebook span {
        color: #4267B2;
    }

    .google i, .google span {
        color: #dd4b39;
    }

.links i {
    font-size: 23px;
    line-height: 40px;
    margin-left: 5px;
}

.links span {
    position: absolute;
    font-size: 17px;
    font-weight: bold;
    padding-left: 8px;
    font-family: 'Open Sans', sans-serif;
}

.signup {
    margin-top: 50px;
    font-family: 'Noto Sans', sans-serif;
}

    .signup a {
        color: #3498db;
        text-decoration: none;
    }

        .signup a:hover {
            text-decoration: underline;
        }

form.myform span img {
    width: 129px;
}
/*------------*/
.login-logo-img img {
    width: 100px !important;
}

.auth {
    text-align: center;
    padding: 20px 10px;
}

.welcome-title {
    font-weight: 600;
    color: #031624ad;
    font-family: sans-serif;
    font-size: 17px;
    margin: 13px 6px -8px 0px;
}

p.admin-content {
    font-weight: lighter;
    color: #696969ed;
    font-size: 14px;
}

span.show-pass {
    position: absolute;
    right: 1px;
    top: 5px;
    background-color: #e5e7eb;
    padding: 12px 11px;
}

.form-content .input-box input:focus {
    border: 2px solid rgb(229 231 235) !important;
    outline: none !important;
}

.email-label {
    color: black !important;
    text-decoration: none !important;
}

.input-gap {
    margin-bottom: 14px !important;
}
/*------start media query mobile mood-------------*/
@media only screen and (max-width: 767px) {
    .cover {
        display: none;
    }

    .form-content .input-box input {
        height: 79%;
        width: 100%;
        /* border: none; */
        padding: 0 46px;
        /* font-size: 16px; */
        font-weight: 400;
        border: 1px solid rgb(229 231 235);
        transition: all 0.3s ease;
        /* border-radius: 7px; */
    }

    .form-content .login-form, .form-content .signup-form {
        width: calc(100%);
    }

    .subbody {
        margin-top: 0px;
        padding: 0px 15px;
    }

    .container {
        padding: 30px 30px;
    }
}

/*-------------tablet mood responsive-----*/
@media (min-width: 768px) and (max-width: 1024px) {
    .subbody {
        margin-top: 0px;
    }

    .subbody {
        margin-top: 0px;
        padding: 0px 15px;
    }

    .container {
        padding: 30px 30px;
    }
}
