/* Login page styles starts */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap');
/* =================== common color=================== */

:root {
    --color-blue: #1aaeeb;  
  }
/* =================== common color=================== */

html {
    height:100%;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 1.428571429;
    color: #333333;
    background-color: #0c52a3;
    /*background-image: url('../../Vendor/Images/BackGrounds.jpg');*/
   /* background-position: bottom left;
    background-repeat: no-repeat;
    background-size: cover;*/
}
.heading {
    color: #0c52a3;
    font-size: 22px;
    font-weight: bold;
    /*text-shadow: 0 0 5px black;*/
}
.iconbox{
    width:42px;
    background:#1aaeeb;
    border: none;
}
.text-center{
    text-align: center;
}
.text-right{
    text-align: right;
}
.loginbox {
    width: 415px;
    margin: 110px auto 0px auto;
    background: white;
    box-shadow: 0 0px 10px -2px black;
    -moz-border-radius: 1em;
    -webkit-border-radius: 1em;
    border-radius: 1em;
    position: relative;
    overflow: hidden;
}
.loginheader {
    background-color: var(--color-blue);
    color: white;
    padding: 8px;
    text-align: center;
    font-weight: 500;
    font-size: 16px;
}
.loginbody {
    padding: 30px 15px 30px 15px;
}

.no-margin{
    margin: 0px;
}
.login-input{
    font-size: 14px;
}
.login-input:focus{
    border: 1px solid #91c6ff;
    outline: none;
    box-shadow: none !important;
    transition: 0.3s;
}

.forgottext {
    color: #0c52a3 !important;
    /*text-shadow: 0 0 5px black;*/
}
.loginbtn {
    width: 100%;
    border: none;
    font-size: 18px;
    padding: 8px;
    background-color: #0c52a3;
    color: white;
    cursor: pointer;
    outline: none;
    -moz-border-radius: 1em;
    -webkit-border-radius: 1em;
    border-radius: 1em;
}

/* checkbox style========= */
.checkcontainer {
    display: block;
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #0c52a3;
   /* text-shadow: 0 0 5px black;*/
}
  
  
  .checkcontainer input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
  }
  

  .checkcontainer:hover input ~ .checkmark {
    background-color: #ccc;
  }
  
  
  .checkcontainer input:checked ~ .checkmark {
    background-color: #1aaeeb;
  }
  
  
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  .checkcontainer input:checked ~ .checkmark:after {
    display: block;
  }
  
  
  .checkcontainer .checkmark:after {
    left: 7px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  /* checkbox style ends ========= */
  ::placeholder {
    color: #aaa6a6 !important;
}




@media only screen and (max-width: 500px) {
    .MobHide {
        display: none;
    }

    .loginbox {
        width: 100% !important;
    }
}

.input-group-text {
    /*    -moz-border-radius: 1em;
    -webkit-border-radius: 1em;
    border-radius: 1em;

*/
    -webkit-border-top-left-radius: 1em;
    border-top-left-radius: 1em;
    -webkit-border-bottom-left-radius: 1em;
    border-bottom-left-radius: 1em;
    padding: 0.7em;
}

.form-control {
    -moz-border-radius: 1em;
    -webkit-border-radius: 1em;
    border-radius: 1em;
}

.select2-container {
    width: 100%;
    background-color: transparent;
    padding: 0;
    border: none;
}

    .select2-container .select2-choice {
        /*-moz-border-radius: 1em !important;
        -webkit-border-radius: 1em !important;
        border-radius: 1em !important;*/
        height: 30px !important;
    }

        .select2-container .select2-choice .select2-arrow {
            width:20px !important;
        }

.backwhite {
    position: absolute;
    background-color: rgba(255,255,255,0.7);
    width: 100%;
    height: 8em;
    left: 0;
    top: -35px;
    z-index: -1;
}
@media screen and (max-width: 800px)  {
    .backwhite {
        height: 7em;

    }
}
