﻿@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');

body {
    padding: 0;
    margin: 0;
    font-size: 14px;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

:root {
    --blueColor: #243d90;
    --darkBlueColor: #1b399d;
    --greenColor: #84cc17;
    --lightColor: #f1f5f9;
    --orangeColor: #fa812d;
    --yellowColor: #fad12c;
    --redColor: #ff1717;
    --titleColor: #1E293B;
    --textColor: #64748B;
    --darkColor: #132241;
    --hoverColor: #EF6E4D;
    --borderColor: #DCDCDC;
    --forthColor: #25385D;
    --secondaryColor: #5D2554;
    --thirdColor: #25545D;
    --primaryColor: #344E81;
    --lightColor: #25385d0d;
    --textColor: #515157;
    --darkColor: #132241;
    --borderColor: #DCDCDC;
    --ts: .3s all ease-in-out;
}

/* login form start */

.login-Page {
    overflow: hidden;
    height: 100vh;
    background: #fff;
}

    .login-Page{
        position: relative;
        z-index: 1;
    }

        .login-Page::before {
            content: "";
            position: absolute;
            top: 0px;
            bottom: 0px;
            left: 0px;
            margin-top: -28%;
            margin-bottom: -15%;
            margin-left: -13%;
            width: 60%;
            transform: translate(0, 0) rotate(-4deg) skewX(0) skewY(0) scaleX(1) scaleY(1);
            border-radius: 100%;
            z-index: -1;
            background-color: var(--blueColor);
            opacity: .2;
        }

        .login-Page::after {
            content: "";
            position: absolute;
            top: 0px;
            bottom: 0px;
            left: 0px;
            margin-top: -20%;
            margin-bottom: -12%;
            margin-left: -13%;
            width: 60%;
            transform: translate(0, 0) rotate(0) skewX(0) skewY(0) scaleX(1) scaleY(1);
            border-radius: 100%;
            --tw-bg-opacity: 1;
            z-index: -1;
            background-color: var(--blueColor);
        }


h1.log_tit {
    color: var(--titleColor);
    font-size: 40px;
}


.login_form label, .forgot-password, .google-button__text {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: .5px;
    color: var(--textColor);
}

.login_form .form-box > input, .login_form .form-box > select{
    border: 1px solid #dfdfdf;
    padding: 13px 20px;
    margin: 10px 0;
    border-radius: 0px;
    font-size: 16px;
    letter-spacing: .5px;
}

input[type="submit"] {
    width: 100%;
    background: var(--blueColor);
    color: #fff;
    padding: 13px 0;
    border-radius: 0px;
    border: none;
    font-weight: 400;
    letter-spacing: .5px;
    font-size: 17px;
    transition: var(--ts);
}

input[type="submit"]:hover{
    background: var(--forthColor);  
}

.or__text {
    color: #c4c4c4;
    font-size: 20px;
    font-weight: 200;
    z-index: 1;
}

    .or__text:before {
        content: '';
        position: absolute;
        left: 0;
        bottom: 14px;
        width: 100%;
        height: 1px;
        z-index: -1;
        background: #c4c4c44d;
    }


    .or__text:after {
        content: '';
        position: absolute;
        width: 40px;
        z-index: -1;
        height: 22px;
        background: #fff;
        margin-left: -30px;
        margin-top: 8px;
    }

.bg-blue span{
    font-size: 16px;
    color: var(--textColor);
}

.bg-blue a {
    color: var(--bs-blue);
    font-size: 16px;
}


.google-button {
    border: none;
    background: transparent;
}

.goo_div_cnt {
    border: 1px solid var(--borderColor);
    background: #F2f3f3;
    border-radius: 5px;
    padding: 10px 50px;
}


.goo_btn > span.google-button__icon {
    width: 30px;
}

.goo_btn > span > svg{
    width: 100%;
}


.log_bg {
    width: 440px;
    margin-left: -50px;
    display: flex;
    align-items: center;
    height: 100vh;
}


.social-list > li {
    border-radius: 100%;
    width: 35px;
    height: 35px;
    text-align: center;
    background: var(--primaryColor);
    border: 1px solid var(--borderColor);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--ts);
}

    .social-list > li:hover{
        background: var(--forthColor);
    }

    .social-list > li > a {
        color: #fff;
    }



.copyright {
    font-size: 17px;
    margin: 67px auto 0;
    text-align: center;
    color: #bbb;
    letter-spacing: .5px;
}

    .copyright > a {
        font-size: 17px;
        font-weight: 900;
        text-decoration: none;
        color: var(--primaryColor);
        transition: var(--ts);
    }

        .copyright > a:Hover {
            color: var(--forthColor);
        }



        .trm_lnk_div {
            width: 100%;
            border-radius: 2px;
            padding: 0px 20px;
            height: 50px;
            line-height: 50px;
            margin-top: 0px;
            margin-right: -20px;
        }


.term_help_div {
    margin-top: 12px;
}


.trm_lnk {
    width: 100%;
    border-radius: 2px;
    padding: 10px 20px;
    height: 50px;
    margin-top: 0px;
}

.trm_lnk_div span {
    position: absolute;
    width: 60px;
    height: 48px;
    background: #f2f3f3;
    text-align: center;
    font-size: 30px;
    right: 21px;
    border-radius: 2px;
    top: 1px;
}

.trm_lnk_div span > i{
    opacity: .6;
}

/* login end */

.login_lbl_alert {
    transform: scale(1);
    transition: .5s all ease-in-out;
}


    #AlertDiv {
        border-radius: 2px;
        padding: 0px;
        font-size: 18px;
        margin-top: 30px;
    }




#lblAlert {
    color: #dc3545;
    padding: 10px 0;
    transition: .5s all ease-in-out;
}


.log_bg_cnt h2 {
    color: #fff;
    font-size: 35px;
    line-height: 50px;
    letter-spacing: .5px;
}

.log_bg_cnt span {
    font-size: 18px;
    letter-spacing: .5px;
    color: #ffffffa6;
}

@media only screen and (min-width: 991px) and (max-width: 1200px) {
    .log_bg {
        margin-left: -22px;
    }
}

@media only screen and (min-width: 767px) and (max-width: 991px){

    .trm_lnk_div {
        height: 30px;
        line-height: 30px;
    }

    h1.log_tit {
        font-size: 28px;
    }

    .login-Page .container {
        max-width: 560px;
    }

    #AlertDiv {
        margin-top: 10px;
        font-size: 14px;
        }
    .login_form .form-box > input {
        padding: 8px 10px;
    }
    input[type="submit"] {
        font-size: 14px;
        padding: 10px 10px;
    }
    .login_form label, .forgot-password, .google-button__text {
        font-size: 14px;
    }

    .login-Page::after, .login-Page::before {
        width: 100%;
        height: 100%;
        margin: 0;
        border-radius: 0;
    }

    .copyright {
        font-size: 14px;
        position: relative;
        margin: 10px auto 20px;
        width: 100%;
        text-align: center;
    }

    .trm_lnk_div > div {
        line-height: 25px;
    }

    .trm_lnk_div a {
        color: #ffffff8a !important;
        letter-spacing: .5px;
    }

    .copyright {
        color: #fff;
    }

        .copyright > a {
            font-size: 14px;
            color: #ffc107;
        }

    .form-section {
        background: #fff;
        border-radius: 5px 5px 0 0;
        padding: 20px 20px;
    }

    .bg-blue span {
        font-size: 14px;
        text-align: center;
        background: #fff;
        border-radius: 0 0 5px 5px;
        padding: 0 20px 30px;
    }



    .social-list {
        position: absolute;
        top: 8px;
        right: 20px;
        transition: var(--ts);
    }

        .social-list > li {
            width: 30px;
            height: 30px;
            background: var(--titleColor);
        }


    i.ri-question-mark {
        font-size: 18px;
    }

    .social-list:Hover {
        opacity: 1;
    }

    .trm_lnk_div {
        text-align: center;
    }

    .goo_div_cnt {
        padding: 8px 15px;
    }

    .goo_btn > span.google-button__icon {
        width: 25px;
        margin-right: 8px;
    }

    .bg-blue a {
        color: #003cff;
        font-size: 14px;
    }   

}


@media only screen and (min-width: 567px) and (max-width: 768px) {

    .login-Page::after, .login-Page::before {
        width: 100%;
        height: 100%;
        margin: 0;
        border-radius: 0;
    }
    h1.log_tit {
        font-size: 28px!important;
    }

    .login_form label, .forgot-password, .google-button__text {
        font-size: 14px!important;
    }

    .login_form .form-box > input {
        font-size: 14px;
        padding: 8px 10px !important;
    }
    input[type="submit"] {
        font-size: 14px!important;
        padding: 8px 0!important;
    }

    .copyright {
        width: 100%;
    }

    .trm_lnk_div > div {
        line-height: 25px;
    }

    .trm_lnk_div a {
        color: #ffffff8a !important;
        letter-spacing: .5px;
    }
    .copyright > a  {
        font-size: 15px;
    }

    .copyright {
        margin: 10px auto 0;
        color: #fff;
        font-size: 14px;
    }

        .copyright > a {
            color: #ffc107;
        }

    .form-section {
        background: #fff;
        border-radius: 5px 5px 0 0;
        padding: 20px 30px 0px;
    }

    #AlertDiv {
        margin-top: 10px!important;
    }
    #lblAlert {
        font-size: 14px!important;
    }

    .bg-blue span {
        font-size: 14px !important;
        text-align: center;
        background: #fff;
        border-radius: 0 0 5px 5px;
        padding: 0 20px 30px;
    }


    .social-list {
        position: absolute;
        top: 8px;
        right: 20px;
        transition: var(--ts);
    }

        .social-list > li {
            width: 30px;
            height: 30px;
            background: var(--titleColor);
        }

    i.ri-question-mark {
        font-size: 18px;
    }

    .social-list:Hover {
        opacity: 1;
    }

    .trm_lnk_div {
        text-align: center;
    }

    .goo_div_cnt {
        padding: 5px 15px;
    }

    .goo_btn > span.google-button__icon {
        width: 25px;
        margin-right: 8px;
    }

    .bg-blue a {
        color: #003cff;
        font-size: 14px;
    }   





}

@media only screen and (max-width: 567px) {

    
    .login-Page {
        display: flex;
        align-items: center;
    }

    #AlertDiv {
        padding: 4px 0;
        font-size: 14px;
        margin-top: 0;
        letter-spacing: .5px;
    }

    .login_form .form-box > input {
        padding: 9px 20px;
        margin: 5px 0;
        border-radius: 5px;
        font-size: 14px;
        letter-spacing: .5px;
    }

    h1.log_tit {
        font-size: 22px !important;
        font-weight: 800px !important;
    }

    .login_form label, .forgot-password, .google-button__text, .bg-blue span, .bg-blue a {
        font-size: 13px !important;
    }
    input[type="submit"] {
        font-size: 14px;
        padding: 6px 0;
    }

    .copyright > a {
        font-size: 15px;
        font-weight: 600;
        letter-spacing: .5px;
    }

    .copyright {
        text-align: center;
        position: relative;
        bottom: auto;
        margin-top: 15px;
        font-size: 13px;
    }

    .login-Page::after, .login-Page::before {
        width: 100%;
        height: 100%;
        margin: 0;
        border-radius: 0;
    }

    .trm_lnk_div > div{
        line-height: 25px;
    }

    .trm_lnk_div a {
        color: #ffffff8a !important;
        letter-spacing: .5px;
    }

    .copyright { 
        color: #fff;
    }

        .copyright > a {
            color: #ffc107;
        }

    .form-section {
        background: #fff;
        border-radius: 5px 5px 0 0;
        padding: 20px 20px 20px;
    }

    .or__text {
        font-size: 18px;
    }

    .bg-blue span {
        text-align: center;
        background: #fff;
        border-radius: 0 0 5px 5px;
        padding: 0 20px 20px;
    }

    .social-list {
        position: absolute;
        top: 8px;
        right: 20px;
        transition: var(--ts);
    }

        .social-list > li {
            width: 30px;
            height: 30px;
            background: var(--titleColor);
        }

    i.ri-question-mark {
        font-size: 16px;
    }

    .social-list:Hover {
        opacity: 1;
    }
    .trm_lnk_div {
        text-align: center;
    }

    .goo_div_cnt {
        padding: 5px 15px;
    }
    .goo_btn > span.google-button__icon {
        width: 25px;
        margin-right: 8px;
    }
    .bg-blue a {
        color: #003cff;
        font-size: 16px;
    }   

}

