/* login */
#login {
    display: flex;
    flex-wrap: nowrap;
    overflow: auto;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ECF0FF;
}

.login_img {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background-color: #1C274C;
    overflow: hidden;
}

.login_img img {
    /* width: 80%; */
    width: 35%;
    height: auto;
}

.login-password,
.login-email {
    border: none !important;
    outline: none;
    background-color: #f8fafc !important;
    box-shadow: 0 0 2px 0px rgba(0, 0, 0, 0.5);
}

.f-s-20 {
    font-size: 20px !important;
}

.signIn-text {
    font-family: "Inter";
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 18px;
    display: flex;
    align-items: center;
    text-align: center;
    color: rgba(0, 0, 0, 0.85);
}

.access-ac-text {
    font-family: "Inter";
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 18px;
    display: flex;
    align-items: center;
    text-align: center;
    color: rgba(0, 0, 0, 0.85);
}

.login-btn {
    margin-top: 30px;
    width: 325px;
    height: 60px;
    /* height: 76px; */
    background: #1C274C !important;
    box-shadow: 0px 0px 3px rgba(145, 85, 199, 0.25);
    border-radius: 12px !important;
    font-weight: 500;
    font-size: 20px !important;
    line-height: 16px !important;
    text-align: center !important;
    letter-spacing: 0.75px;
    text-transform: uppercase !important;
    color: #fff !important;
    transition: all 0.5s;
}

.login-btn:hover {
    background: #1C274Cbb !important;
}

.label-text {
    font-size: 24px;
    line-height: 12px;
    display: flex;
    align-items: center;
    text-align: right;
    color: rgba(0, 0, 0, 0.65);
}

/* #fb2cb3,#bf18d7,#7e02fe */

.login_form {
    background: rgba(145, 85, 199, 0.05);
    width: 50%;
    display: flex;
    justify-content: center;
    overflow: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 64px;
}

.login_img_sm_screen {
    display: none;
}

.login_cont {
    width: 80%;
    box-shadow: 0px 0px 3px rgba(145, 85, 199, 0.25);
    background: #fff;
    /* background: linear-gradient(45deg, #7e02fe, #bf18d7); */
    border-radius: 15px;
    position: relative;
    padding: 20px 40px;
}

.login_cont h1 {
    text-align: center;
}

.login_cont label {
    text-align: left;
    margin-top: 5px;
    display: block;
    font-size: 19px;
}

.login_cont .login_btn {
    width: 250px;
    color: white;
    margin: 40px auto 0 auto;
    background-color: #0b7ac3;
    border: none;
    border-radius: 5px;
    box-shadow: 0 0 1px 1px rgb(11, 122, 195, 0.5);
    transition-duration: 0.4s;
    cursor: pointer;
}

.login_cont .login_btn:hover {
    background-color: rgb(255, 255, 255, 0);
    color: #0b7ac3;
    box-shadow: 0 0 1px 1px rgb(11, 122, 195, 1);
}

.m-t-28 {
    margin-top: 28px;
}

.height-63 {
    height: 50px !important;
}

.justify-content-center {
    display: flex;
    justify-content: center;
}

.forget-text {
    font-size: 20px !important;
    line-height: 32px !important;
    /* identical to box height, or 133% */
    display: flex;
    align-items: center;
    text-align: center;
    color: rgba(0, 0, 0, 0.75) !important;
}

button {
    border: none !important;
}

input:focus,
button:focus {
    outline: none;
}

.m-t-20 {
    margin-top: 20px;
}

/* screen size 0-767 */

@media only screen and (max-width: 767.8px) {
    #login {
        background: linear-gradient(45deg, #7e02fe, #bf18d7);
    }
    .login_img {
        width: 50%;
    }
    .login_img_sm_screen {
        display: block;
    }
    .login_form {
        width: 100%;
        height: auto;
        background-color: #e5e5e5;
        display: block;
        padding-bottom: 50px;
    }
    .login_cont {
        margin: auto;
        width: 85%;
        background-color: rgb(255, 255, 255);
        padding: 20px 30px 60px 30px;
        border-radius: 20px;
        z-index: 50;
    }
}

/* screen size 768-891 */

@media only screen and (min-width: 768px) and (max-width: 891.8px) {
    .login_img_sm_screen {
        width: 75%;
    }
    .login_img {
        width: 50%;
    }
    .login_form {
        width: 50%;
    }
    .login_cont {
        width: 75%;
    }
}

/* screen size 892-1199 */

@media only screen and (min-width: 892px) and (max-width: 1199.8px) {
    .login_img {
        width: 50%;
    }
    .login_form {
        width: 50%;
    }
    .login_cont {
        width: 75%;
    }
}

/* screen size > 1200 */

@media only screen and (min-width: 1200px) {
    .login_cont {
        width: 60%;
    }
}
