﻿body {
    font-family: "Roboto", sans-serif;
    background-color: #f8fafb;
}

/*p {
    color: #b3b3b3;
    font-weight: 300;
}*/
/*
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: "Roboto", sans-serif;
}*/

a {
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
}

    a:hover {
        text-decoration: none !important;
    }

.content {
    padding-top: 4rem;
    padding-bottom: 1rem;
}

h2 {
    font-size: 20px;
}

@media (max-width: 991.98px) {
    .content .bg {
        height: 500px;
    }
}

.content .contents, .content .bg {
    width: 50%;
}

@media (max-width: 1199.98px) {
    .content .contents, .content .bg {
        width: 100%;
    }
}

.content .contents .form-group, .content .bg .form-group {
    overflow: hidden;
    margin-bottom: 0;
    padding: 15px 15px;
    border-bottom: none;
    position: relative;
    background: #edf2f5;
    border-bottom: 1px solid #e6edf1;
}

    .content .contents .form-group label, .content .bg .form-group label {
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        -webkit-transition: .3s all ease;
        -o-transition: .3s all ease;
        transition: .3s all ease;
    }

    .content .contents .form-group input, .content .bg .form-group input {
        background: transparent;
    }

    .content .contents .form-group.first, .content .bg .form-group.first {
        border-top-left-radius: 7px;
        border-top-right-radius: 7px;
    }

    .content .contents .form-group.last, .content .bg .form-group.last {
        border-bottom-left-radius: 7px;
        border-bottom-right-radius: 7px;
    }

    .content .contents .form-group label, .content .bg .form-group label {
        font-size: 12px;
        display: block;
        margin-bottom: 0;
        color: #b3b3b3;
    }

    .content .contents .form-group.focus, .content .bg .form-group.focus {
        background: #fff;
    }

    .content .contents .form-group.field--not-empty label, .content .bg .form-group.field--not-empty label {
        margin-top: -20px;
    }

.content .contents .form-control, .content .bg .form-control {
    border: 1px;
    padding: 0;
    font-size: 20px;
    border-radius: 3px;
}

    .content .contents .form-control:active, .content .contents .form-control:focus, .content .bg .form-control:active, .content .bg .form-control:focus {
        outline: none;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

.content .bg {
    background-size: cover;
    background-position: center;
}

.content a {
    color: #888;
    text-decoration: underline;
}

.content .btn {
    height: 54px;
    padding-left: 30px;
    padding-right: 30px;
}

.remember_text {
    display: flex;
    align-items: center;
}

.content .forgot-pass {
    position: relative;
    top: 2px;
    font-size: 14px;
}

.social-login a {
    text-decoration: none;
    position: relative;
    text-align: center;
    color: #fff;
    margin-bottom: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-block;
}

    .social-login a span {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

    .social-login a:hover {
        color: #fff;
    }

    .social-login a.facebook {
        background: #3b5998;
    }

        .social-login a.facebook:hover {
            background: #344e86;
        }

    .social-login a.twitter {
        background: #1da1f2;
    }

        .social-login a.twitter:hover {
            background: #0d95e8;
        }

    .social-login a.google {
        background: #ea4335;
    }

        .social-login a.google:hover {
            background: #e82e1e;
        }

.control {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    cursor: pointer;
    font-size: 14px;
}

    .control .caption {
        position: relative;
        top: .2rem;
        color: #888;
    }

    .control input {
        position: absolute;
        z-index: -1;
        opacity: 0;
    }

.control__indicator {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background: #e6e6e6;
    border-radius: 4px;
}

.control--radio .control__indicator {
    border-radius: 50%;
}

.control:hover input ~ .control__indicator,
.control input:focus ~ .control__indicator {
    background: #ccc;
}

.control input:checked ~ .control__indicator {
    background: #6c63ff;
}

.control:hover input:not([disabled]):checked ~ .control__indicator,
.control input:checked:focus ~ .control__indicator {
    background: #847dff;
}

.control input:disabled ~ .control__indicator {
    background: #e6e6e6;
    opacity: 0.9;
    pointer-events: none;
}

.control__indicator:after {
    font-family: 'icomoon';
    content: '\e5ca';
    position: absolute;
    display: none;
    font-size: 16px;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
}

.control input:checked ~ .control__indicator:after {
    display: block;
    color: #fff;
}

.control--checkbox .control__indicator:after {
    top: 50%;
    left: 50%;
    margin-top: -1px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.control--checkbox input:disabled ~ .control__indicator:after {
    border-color: #7b7b7b;
}

.control--checkbox input:disabled:checked ~ .control__indicator {
    background-color: #7e0cf5;
    opacity: .2;
}

.body_bg {
    background-position: initial;
    background-repeat: no-repeat;
    object-fit: contain;
    background-size: auto;
    /*  height:100vh;
            width:100px;*/

    background-image: url('/images/MicrosoftTeams-image.png');
}

.OneWindow {
    color: #1D6093;
    font-size: 20px;
    font-family: Montserrat Alternates !important;
    font-weight: 600;
    word-wrap: break-word;
    /*font-weight: 500;*/
}

.lblEmpoweringYou {
    color: #1D6093;
    font-size: 51.93px;
    font-family: Montserrat Alternates !important;
    word-wrap: break-word;
    margin-bottom: 0.5em;
    font-weight: 700;
}

.gradiant-box {
    width: fit-content;
    /* height: 650px; */
    border: 3px solid #D5EBE5;
    box-sizing: border-box;
    background: linear-gradient(38deg, #C9E5CD 0%, #BAD3C7 15%, #B0C7C3 31%, #ADC3C2 47%, #B6C8C8 59%, #CDD6D7 77%, #F4EDF0 99%, #F5EEF1 100%);
    border-radius: 38.13px;
    border: 7.26px #D5EBE5 solid;
}

.text-alignm {
    margin: 20px 20px 0px 20px;
}

.fa-eye {
    position: absolute;
    top: 54%;
    right: 6%;
    cursor: pointer;
    color: black;
}

label {
    color: #1E5F93;
}

.rem-pass {
    display: ruby-base-container;
}

.login-button {
    background-color: #1E5F93;
    border: 3px solid #1E5F93;
    color: white;
    line-height: 2.5;
}

.btn-block {
    border-radius: .25rem;
}

p {
    color: #1E5F93;
}

.findUs {
    text-align: center;
}

li {
    display: inline;
}

.social-icon {
    color: #1E5F93;
}
/*input[type=text] {

    opacity: 1;
    color: red;
}*/

#a_forget {
    color: #1E5F93;
    /*//text-align: right;*/
}

.links {
    text-align: center;
}

i {
    color: #1E5F93;
}

.animation {
    padding-top: 16%;
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 1;
}

.pwd_field {
    border-top-right-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
}

.input-group-append {
    margin-left: 0px !important;
    border-top-left-radius: 0px !important;
    border-top-right-radius: 0px !important;
}

.input-group {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: nowrap;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
}

.input-group-text {
    background-color: #fff !important;
    width: 40px;
}

./*loginfonts {*/
   /* font-size: 14px !important;*/
   /*font-size:1rem;
}*/
.icon_eye_div{

}
@font-face {
    font-family: "Montserrat Alternates";
    src: url('"Montserrat Alternates"') format('woff2'), /* Super Modern Browsers */
    url('"Montserrat Alternates"') format('woff'), /* Pretty Modern Browsers */
    url('"Montserrat Alternates"') format('truetype'), /* Safari, Android, iOS */
    font-family: "Montserrat Alternates!important";
    src: url('Montserrat Alternates') format('woff2'), /* Super Modern Browsers */
    url('Montserrat Alternates') format('woff'), /* Pretty Modern Browsers */
    url('Montserrat Alternates') format('truetype'); /* Safari, Android, iOS */
    font-weight: 500 !important;
}

.data_forget {
    display: flex !important;
    flex-direction: row;
    justify-content: space-between;
}

.blue-text {
    font-size: 12px;
    color: #1E5F93;
}
.blue-text-check{
    font-size: 12px;
    margin-bottom:0px;
    color: #1E5F93;
}
.form-control {
    display: block !important;
    width: 100% !important;
    height: calc(1.5em + .75rem + 2px) !important;
    padding: .375rem .75rem !important;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem ;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out !important;
}

    .form-control:focus {
        color: #495057 !important;
        background-color: #fff !important;
        border-color: #80bdff !important;
        outline: 0 !important;
        box-shadow: 0 0 0 .2rem rgba(0,123,255,.25) !important;
    }

.center-box {
    padding: 0px 60px;
    width: 100%;
    height: 100vh;
}

.gradient-box {
    width: fit-content;
    height:auto;
    min-height:725px;
    max-height:725px;
    height: 642px;
    border: 3px solid #D5EBE5;
    box-sizing: border-box;
    /*background: linear-gradient(38deg, #C9E5CD 0%, #BAD3C7 15%, #B0C7C3 31%, #ADC3C2 47%, #B6C8C8 59%, #CDD6D7 77%, #F4EDF0 99%, #F5EEF1 100%);*/
    background: linear-gradient(38deg, #C9E5CD 0%, #BAD3C7 15%, #B0C7C3 31%, #ADC3C2 47%, #B6C8C8 59%, #CDD6D7 77%, #F4EDF0 99%, #F5EEF1 100%);
    border-radius: 38.13px;
    border: 7.26px #D5EBE5 solid;
    /*background-color: white;*/
}

#divLang {
    text-align: right;
}
/*.input_data {
    border-radius: 10px !important;
    height: calc(2.95rem + 2px);
    padding: 0.85rem 1.15rem;
    font-size: 12px;
    border: 1px solid #236E9F !important;
    line-height: 1.25;
    font-family: "Roboto", sans-serif !important;
    font-weight: 400;
    width: 100%;
    max-width: 100%;
    text-align: start;
}*/

.lang-dropown {
    min-width: 30%;
    width: auto;
    max-width: 35%;
}

#ddlLang {
    background-color: #e8484800;
    color: #1E5F93;
    box-shadow: none;
    border: 2px solid #fff;
    border-radius: 4px;
    padding: 6px;
}

.text_logo {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
}



@media only screen and (min-width: 2501px) and (max-width: 3839px) {
    .lang-dropown {
        min-width: 15%;
        width: auto;
        max-width: 35%;
    }
}

@media only screen and (min-width: 2001px) and (max-width: 2500px) {
    .lang-dropown {
        min-width: 15%;
        width: auto;
        max-width: 35%;
    }
}

@media only screen and (min-width: 1921px) and (max-width: 2000px) {
    .lang-dropown {
        min-width: 15%;
        width: auto;
        max-width: 35%;
    }
}

@media only screen and (min-width: 1881px) and (max-width: 1920px) {
    .lang-dropown {
        min-width: 15%;
        width: auto;
        max-width: 35%;
    }
}

@media only screen and (min-width: 1521px) and (max-width: 1880px) {
    .lang-dropown {
        min-width: 15%;
        width: auto;
        max-width: 35%;
    }
}

@media only screen and (min-width:1441px) and (max-width: 1520px) {
    .lang-dropown {
        min-width: 15%;
        width: auto;
        max-width: 35%;
    }
}

@media only screen and (min-width: 1321px) and (max-width:1440px) {
    .lang-dropown {
        min-width: 25%;
        width: auto;
        max-width: 35%;
    }
}

@media only screen and (min-width: 1025px) and (max-width:1320px) {
    .lang-dropown {
        min-width: 25%;
        width: auto;
        max-width: 35%;
    }

    .gradient-box {
        min-width: 33%;
    }
}

@media only screen and (min-width: 992px) and (max-width:1024px) {
    .lang-dropown {
        min-width: 30%;
        width: auto;
        max-width: 20%;
    }

    .gradient-box {
        min-width: 40%;
        width: auto;
    }
}

@media only screen and (min-width: 600px) and (max-width:991px) {

    .center-box {
        /* padding: 0px 60px; */
        width: 100%;
        height: 143vh;
    }

    .gradient-box {
        min-width: 70%;
        width: auto;
        max-width: 70%;
    }

    .lang-dropown {
        min-width: 25%;
        width: auto;
        max-width: 35%;
    }

    .text_login {
        text-align: center !important;
        display: flex;
        justify-content: center;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;
    }

    .text_logo {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        align-content: center;
    }
}




@media only screen and (min-width: 576px) and (max-width:599px) {
    .margin-tb {
        margin-bottom: 1rem !important;
    }

    .text_login {
        text-align: center !important;
        display: flex;
        justify-content: center;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;
    }

    .lang-dropown {
        min-width: 55%;
        width: auto;
        max-width: 35%;
    }

    .center-box {
        /* padding: 0px 60px; */
        width: 100%;
        height: 143vh;
    }

    .lblEmpoweringYou {
        color: #1D6093;
        font-size: 40.93px;
    }

    .gradient-box {
        min-width: 100%;
        width: auto;
    }

    .text_logo {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        align-content: center;
    }
}


@media only screen and (min-width:375px) and (max-width:575px) {
    .lblEmpoweringYou {
        color: #1D6093;
        font-size: 30px;
    }

    .gradient-box {
        min-width: 100%;
        width: auto;
    }

    .margin-tb {
        margin-bottom: 1rem !important;
    }

    .center-box {
        /* padding: 0px 60px; */
        width: 100%;
        height: 170vh;
    }

    .lang-dropown {
        min-width: 35%;
        width: auto;
        max-width: 42%;
    }

    .OneWindow {
        color: #1D6093;
        font-size: 18px;
    }

    .text_logo {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        align-content: center;
    }

    .text_login {
        text-align: center !important;
        display: flex;
        justify-content: center;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;
    }

    .data_forget {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

@media only screen and (min-width: 200px) and (max-width:374px) {
    .lblEmpoweringYou {
        color: #1D6093;
        font-size: 26.93px;
    }

    .data_forget {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }


    .gradient-box {
        min-width: 100%;
        width: auto;
    }

    .margin-tb {
        margin-bottom: 1rem !important;
    }

    .center-box {
        /* padding: 0px 60px; */
        width: 100%;
        height: 170vh;
    }

    .lang-dropown {
        min-width: 55%;
        width: auto;
        max-width: 42%;
    }

    .OneWindow {
        color: #1D6093;
        font-size: 18px;
    }

    .text_logo {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        align-content: center;
    }

    .text_login {
        text-align: center !important;
        display: flex;
        justify-content: center;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;
    }
    .loginfonts {
        font-size: 14px;
    }
}
