body {
    margin: 0;
    padding: 0;
    font-family: 'Fira Sans', sans-serif;
    background-color: #000c1d;
    /* color:#E6F3F5; */
    background-color: #000c1d;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
}

.bgbound {
    position: fixed;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.bgcont {
    background-image: url('/static/img/lbg.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    animation: 5s ease-out 0s 1 zoom;
}

@keyframes zoom {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }

    10% {
        opacity: 1;
        ;
    }

    100% {

        transform: scale(1);
    }
}

@media screen and (max-width:599px) {
    body {
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
    }
}

#loginform {
    max-width: 480px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    box-sizing: border-box;
    top: 50%;
    left: 50%;
    background: white;
    position: absolute;
    border-radius: 5px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .3);
    transform: translate(-50%, -50%);
    animation: .5s cubic-bezier(0.33, 1, 0.68, 1) 0s 1 reveal;
}

.mainlogo {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background: #000c1d;
    min-height: 30px;
    border-radius: 5px 5px 0 0;
}

.welcome {
    font-size: 14px;
    margin-top: 25px;
}

.hdiv {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 1);
    margin-top: 10px;
    margin-bottom: 10px;
}

.loginform {
    width: 100%;
    max-width: 360px;
    position: relative;
    margin: 0 auto;

}

.loginform input[type=text] {
    -webkit-appearance: none;
    width: 100%;
    border: none;
    border-radius: 3px;
    padding: 10px;
    box-sizing: border-box;
    font-size: 16px;
    background-color: white;
    font-family: inherit;

}

.loginform input[type=submit] {
    -webkit-appearance: none;
    border: none;
    border-radius: 4px;
    padding: 0 20px;
    box-sizing: border-box;
    background-color: #ebeff3;
    font-weight: 700;
    font-size: 15px;
    line-height: 40px;
    font-family: inherit;
    height: 38px;
    color: #000c1d;
    text-transform: uppercase;
    margin-top: 20px;
}

.loginform input[type=submit]:hover {
    background: #f9ed32;
}

.pass {
    font-size: 14px;
    padding-top: 20px;
}

.hoverer:hover {
    cursor: pointer;
}

.info {
    opacity: .75;
    font-size: 13px;
    max-width: 400px;
    position: relative;
    margin: 0 auto;
    margin-top: 20px;
}

.logcont {
    padding: 30px;
    box-sizing: border-box;
    padding-top: 0px;
    padding-bottom: 35px;
}

.loginform .controls input {
    width: 100%;
    line-height: 36px;
    font-family: inherit;
    border: 1px solid #d9e1e7;
    border-radius: 4px;
    appearance: none;
    -webkit-appearance: none;
    padding: 0 10px;
    font-size: 14px;
}

label {
    text-transform: capitalize;
}

.asteriskField {
    margin-left: 3px;
}

#div_id_password {
    margin-top: 10px;
}

.llogo {
    width: 240px;
    height: 49px;
    position: relative;
    margin: 0 auto;
}

.mainlogo {
    padding: 25px 0;
}

.kyc {
    color: #f9ed32;
    font-weight: 600;
    position: absolute;
    right: 0;
    bottom: -4px;
    font-size: 14px;
    line-height: 14px;
}

.control-group {
    text-align: left;
    font-size: 12px;
}

@keyframes reveal {
    0% {
      opacity: 0;
      transform: translate(-50%,50%) scale(0);
    }
    100% {
      opacity: 1;;
      transform: translate(-50%,-50%) scale(1);
    }
    
  }
  .optloginbutton{
      -webkit-appearance: none;
      border:none !important;
      border-radius:4px;
      padding:0 20px;
      box-sizing:border-box;
      background-color:#ebeff3;
      font-weight:700;
      font-size:15px;
      font-family: inherit;
      height:38px;
      color:#000c1d;
      text-transform: uppercase;
      margin-top: 20px;
      outline:none !important;
    }
  
    .optloginbutton:hover{
        background:#F9ED32;
        color:#000c1d;
    }
  
    .optloginbutton:focus{
        background:#F9ED32;
        color:#000c1d;
        outline:none;
    }
  
      .optloginbutton:active{
        background:#F9ED32 !important;
        color:#000c1d;
        outline:none;
    }
  
    .loadericon{
        display:inline-block;
      width: 16px;
        height:16px;
        display:none;
    }
  
    .loadericon svg{
        width: 16px;
        height:16px;
        vertical-align:top;
        margin-right:20px;
        animation: 5s linear 0s infinite loader;
    }
  
    .optloginbutton > *{
        vertical-align:middle;
    }
  
        @keyframes loader {
    0% {
      transform: rotate(0deg);
    }
    100% {
      opacity: 1;;
      transform: rotate(359deg);
    }
  }