.well1 {
    /* padding: 35px; */
    /* padding-top: 10px; */
    padding: 10px;
    /* padding-left: 30px; */
    box-shadow: 0 0 10px #666666;
    /* margin: 4% auto 0; */
}
.footer{
   background: #fff;
   border: none;
   padding: 0 20px 30px;
}
.wellf {
  background: #fff;
  padding: 35px;
  box-shadow: 0 0 10px #666666;
  margin: 4% auto 0;
  width: 450px;
}
.stylish-form 
{
  background-image:url('/images/bg-en.jpg'); 
  padding:10px;
}
.well {
  background: #fff;
  padding: 15px 20px 20px 20px;
  box-shadow: 0 0 10px #666666;
  margin: 5px auto 0;
  width: 450px;
}
.reveal{
  border: 1px solid rgba(0, 0, 0, .35)
}

.verifyo
{
    display: none;
}
input:required 
{    
    border:1px solid #999;
}

.resendLink{
    display: none;
}
h2 {
   line-height: 5px;
   font-size: 22px;
   font-weight: 700;
}
.wrapper {
    display: flex;
    align-items: center;
    flex-direction: column; 
    justify-content: center;
    height: 100%;
    width: 100%;
    min-height: 100%;

  }
 
.centered {
position: fixed;
top: 40%;
left: 50%;
transform: translate(-50%, -50%);
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
z-index: 100;
}
.radio-group label {
  overflow: hidden;
} .radio-group input {
   /* This is on purpose for accessibility. Using display: hidden is evil.
   This makes things keyboard friendly right out tha box! */
  height: 1px;
  width: 1px;
  position: absolute;
  top: -20px;
} .radio-group .not-active  {
  color: #3276b1;
  background-color: #fff;
}
.radio-group .not-active1 {
   color: #fff;
   background-color: #fff;
}

.imgcen {
    position: absolute;
  
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 100;
    }
    #success_message{ display: none;}
.input-group-addon
{
    background-color: #eee;
    color: black;
}
p {
  margin-top: 10px;
  margin-bottom: 0;
}
.img-circle
{
    border-radius: 50%; 
}
.imgcenter {    
    padding: 30px;    
    position: relative;   
    padding-top: 30px;    
    text-align: center;
    cursor: pointer;    
    height: 50px;
    max-width: 50px;
    border-radius: 50%;
    background: rgba(3,3,3,.8);
    opacity: 0.4;
    box-shadow: 10px 10px 30px #000;
}
.profile-img
{
    margin: 0 auto 10px;
    display: block;
    
}
.profile-img1
{
    padding: 10px;
    margin: 0 auto 10px;
    display: block;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}
.heads
{
    border-bottom:1px solid #d1cbcb;
}


/* ANIMATIONS */

/* Simple CSS3 Fade-in-down Animation */
.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }
  
  @-webkit-keyframes fadeInDown {
    0% {
      opacity: 0;
      -webkit-transform: translate3d(0, -100%, 0);
      transform: translate3d(0, -100%, 0);
    }
    100% {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
  }
  
  @keyframes fadeInDown {
    0% {
      opacity: 0;
      -webkit-transform: translate3d(0, -100%, 0);
      transform: translate3d(0, -100%, 0);
    }
    100% {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
  }
  
  /* Simple CSS3 Fade-in Animation */
  @-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
  @-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
  @keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
  
  .fadeIn {
    opacity:0;
    -webkit-animation:fadeIn ease-in 1;
    -moz-animation:fadeIn ease-in 1;
    animation:fadeIn ease-in 1;
  
    -webkit-animation-fill-mode:forwards;
    -moz-animation-fill-mode:forwards;
    animation-fill-mode:forwards;
  
    -webkit-animation-duration:1s;
    -moz-animation-duration:1s;
    animation-duration:1s;
  }
  
  .fadeIn.first {
    -webkit-animation-delay: 0.4s;
    -moz-animation-delay: 0.4s;
    animation-delay: 0.4s;
  }
  
  .fadeIn.second {
    -webkit-animation-delay: 0.6s;
    -moz-animation-delay: 0.6s;
    animation-delay: 0.6s;
  }
  
  .fadeIn.third {
    -webkit-animation-delay: 0.8s;
    -moz-animation-delay: 0.8s;
    animation-delay: 0.8s;
  }
  
  .fadeIn.fourth {
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    animation-delay: 1s;
  }
  

  p.wrong {
    display: none;
}

p.wrong.shake {
    display: block;
}

p.wrong.shake {
    animation: shake .4s cubic-bezier(.36, .07, .19, .97) both;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}

@keyframes shake {
    10%,
    90% {
        transform: translate3d(-1px, 0, 0);
    }
    20%,
    80% {
        transform: translate3d(1px, 0, 0);
    }
    30%,
    50%,
    70% {
        transform: translate3d(-2px, 0, 0);
    }
    40%,
    60% {
        transform: translate3d(2px, 0, 0);
    }
}
.dashimg {
  position: relative;
  /* width: 32px; */
  padding-bottom: 5px;
}
.otpimg {
  position: relative;
  /* width: 32px; */
  height: 24px;
  padding-bottom: 0px;
}
.dashimg1 {
     height: 18px;
    position: relative;
    width: 18px;
}
#otpverify {
   
    letter-spacing: 23px;
   
  }
  .card:hover {
    box-shadow: 0 8px 17px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  }
  .card {
    display: block; 
      margin-bottom: 20px;
      line-height: 1.42857143;
      background-color: #fff;
      border-radius: 2px;
      box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12); 
      transition: box-shadow .25s; 
  }

  label.valid {
    width: 24px;
    height: 24px;
    background: url(assets/img/valid.png) center center no-repeat;
    display: inline-block;
    text-indent: -9999px;
  }
  label.error {
      font-weight: bold;
      color: rgba(255, 21, 21, 0.91);
      padding: 0px 14px;
      margin-top: -1px;
      position: absolute;
  }
  
  /* all */
  ::-webkit-input-placeholder { color:#f00; }
  ::-moz-placeholder { color:#f00; } /* firefox 19+ */
  :-ms-input-placeholder { color:#f00; } /* ie */
  input:-moz-placeholder { color:#f00; }

  #otpverification
  {
     display:none; 
  }

  #otpverify{
     border: 0;
     outline: 0;
     background: transparent;
     border-bottom: 2px solid black;
     text-align:center;
     padding : 5px;
     margin-left:10px;
 }
/* .centered-form {
    margin-top: 10px;
    margin-bottom: 120px;
} */

.centered-form .panel {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: rgba(0, 0, 0, 0.3) 20px 20px 20px;
}

.centered-forms {
  /* margin-top: 50px; */
  margin-bottom: 120px;
}

#form {
  max-width: 800px;
  margin: 14px auto 0;
}
#form input {
  margin: 0 2px;
  text-align: center;
  font-size: 30px;
  border: solid 1px #ccc;
  box-shadow: 0 0 5px #ccc inset;
  outline: none;
  width: 14%;
  transition: all .2s ease-in-out;
  border-radius: 3px;
}
  #form input:focus {
      border-color: #27A1CA;
      box-shadow: 0 0 5px #27A1CA inset;
    }
    
    #form input::selection {
      background: transparent;
    } 
  
    #form button { 
      text-transform: uppercase;
  }
  
  .otp button { 
      text-transform: uppercase;
  }

  #resendOTP {
    display: none;
}

#changePassword {
    display: none;
}

/* page structure */
#page {
    display: block;
    position: relative;
    overflow: hidden;
    height: auto;
    background: #fff;
}

#otp {

    letter-spacing: 23px;

}

/* inner page layouts */
#content-login {
    display: block;
    position: relative;
    width: 100%;
}

#content-register {
    display: none;
    width: 100%;
    position: absolute;
    top: 0;
    left: 880px;
}

.qrmobile {
  display: none;
}

.qrdesktop {
  display: block;
}

@media (max-width:575px) {
  .qrmobile {
      display: block;
  }

  .qrdesktop {
      display: none;
  }
}