﻿* {
    margin: 0px;
    padding: 0px;
}


body {
    /*display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: linear-gradient(to bottom right, #b3cde0, #fbc3bc);*/
    background-image: url('../images/login-bg.jpg');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    min-height:100vh;
}
.login_box {
    position: fixed;
    background-color: #ffffff;
    /*max-width: 500px;*/
    top: 0px;
    bottom: 0px;
    left: 0px;
    overflow-y: auto;
    overflow-x: hidden;
    /* padding: 9px 30px 0px 30px;*/
    padding: 0px 0px 0px 0px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center !important;
    align-items: center !important;
}

.login_box_inside {
    max-width: 400px;
    width: 400px;
    display: block;
    padding: 20px;
}


.loginbox_logo {
    max-width: 300px;
    margin-bottom: 20px;
    height: 37px;
}


.login_box_inside h2 {
    font-size: 30px;
    font-weight: 800;
}
.color_h2 {
    color: #003B6D;
}
.color_para {
    color: #9D9D9D;
    font-size: 17px;
    font-weight: 500;
}





 .login_label {
    margin-bottom: 0px !important;
    color: #787774 !important;
    font-weight: 500 !important;
}
.login_input {
    color: #040404 !important;
    font-weight: 500 !important;
    background-color:white!important;
}

    /*.login_input:hover,*/
    .login_input:focus {
        border: 2px solid #003B6D;
        box-shadow:none !important;

    }

/*.captcha_box {
    background-color: var(--ma-grey20);
    font-size: 14px;
}*/

.img_capcha {
    background-color: #F1F1F1;
    border: 1px solid #E5E2DE;
    border-radius:6px;
    width:126px;
    height:38px;
}

.btn_forgotpassword {
    color: #003B6D;
    font-weight: 500;
}


.copyright_text {
    color: #82817E;
    font-size: 12px;
}

.link_copyright {
    color: #C4C3C0;
    font-size: 12px;
}


.btn_sign_in {
    background: var(--ma-type-primary);
    color: var(--ma-white);
    padding: 10px 40px;
    border: 1px solid var(--ma-type-primary);
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    font-weight: 600;
}
.btn_sign_in i {
    margin-left:10px;
}
    .btn_sign_in:hover,
    .btn_sign_in:focus,
    .btn_sign_in:active {
        background: var(--ma-white);
        color: var(--ma-type-primary);
        border: 1px solid var(--ma-type-primary);
        -webkit-transition-duration: 0.5s;
        transition-duration: 0.5s;
    }




.wave {
    background: rgb(0 59 109 / 54%);
    border-radius: 1000% 1000% 0 0;
    position: fixed;
    width: 200%;
    height: 100px;
    animation: wave 10s -3s linear infinite;
    transform: translate3d(0, 0, 0);
    opacity: 0.8;
    bottom: 0;
    left: 0;
    z-index: -1;
}

    .wave:nth-of-type(2) {
        bottom: -1.25em;
        animation: wave 18s linear reverse infinite;
        opacity: 0.8;
    }

    .wave:nth-of-type(3) {
        bottom: -2.5em;
        animation: wave 20s -1s reverse infinite;
        opacity: 0.9;
    }

@keyframes wave {
    2% {
        transform: translateX(1);
    }

    25% {
        transform: translateX(-25%);
    }

    50% {
        transform: translateX(-50%);
    }

    75% {
        transform: translateX(-25%);
    }

    100% {
        transform: translateX(1);
    }
}



@media (max-width: 767px) {
    body {
        text-align: center;
    }
    .login_box {
        text-align: left;
        margin: auto;
        left: 0px;
        right: 0px;
        max-width: 400px;
        top: 50px;
        bottom: 50px;
    }
}
