




.wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap:wrap-reverse;
    justify-content: center;
    align-items: normal;
    align-content: stretch;
    background: linear-gradient(0deg, rgba(34,193,195,1) 0%, rgb(252, 172, 0) 100%);
   
  }
  
  .form-box:nth-child(1) {
    display: block;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    align-self: auto;
    order: 0;
    padding: 5vw;
    
  }
  
  .info-text:nth-child(2) {
    display: block;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    align-self: auto;
    order: 0;
    padding: 5vw;
    align-items: center;
  
  }
 




.form-box h2 { 
    font-size: 22px;
    color:antiquewhite;
    text-align: center;
}

#otp_verify {
    padding: 1vw;
    margin-bottom: 50px;
    display: none;
}

.input-box {
    position:relative;
    width: 100%;
    height:50px;
    margin:25px 0;
}



.input-box input {
    width: 100%;
    height: 100%;
    background: transparent;
    border:none;
    outline: none;
    font-size: 16px;
    font-weight: 500;
    color:#fff;
    border-bottom: 2px solid #fff;
    transition:.5s;
   
}

.input-box input:focus,
.input-box input:valid
{
border-bottom-color: #0ef;
}


.input-box label {
    position: absolute;
    top:50%;
    left:0;
    transform: translateY(-50%);
    font-size:18px;
    color:#fff;
    pointer-events: none;
    transition:.5s;
}

.input-box input:focus~label,
.input-box input:valid~label
{
top:-5px;
color:rgb(0, 0, 0);
}


.input-box i {
    position: absolute;
    top:50%;
    right:0;
    transform: translateY(-50%);
    font-size:18px;
    color:#fff;
    pointer-events: none;
    transition:.5s;
}

.input-box input:focus~i,
.input-box input:valid~i
{
color:#0ef;
}

#login_error {
    display: none;
    color: rgb(139, 2, 2);
}




.btn {
    position:relative;
    width:100%;
    height:45px;
    background: transparent;
    border:2px solid #0ef;
    outline: none;
    border-radius: 40px;
    cursor: pointer;
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    z-index:1;
    overflow: hidden;
    transition:.5s;
}

.btn::before {
    content: "";
    position: absolute;
    top:-100%;
    left:0;
    width: 100%;
    height: 300%;
    background: linear-gradient(#081b29,#0ef,#081b29,#0ef);
    z-index:-1;

}

.btn:hover::before {
top:0;
}

/*

.form-box .logreg-link {
    font-size: 14px;
    color: #fff;
    display: flex;
    justify-content: center;
    text-align: center;
    margin: 20px 0 10px;
}

.logreg-link p a {
    color: #0ef;
    text-decoration: none;
    font-weight: 600;
}

.logreg-link p a:hover {
    text-decoration: underline;
}



*/

.imgCnt {
    margin: auto;
    height: 100px;
    width: 100px;
    margin-bottom: 2rem;
    background-image: url('../Image/logo.jpg');
    background-repeat: no-repeat;
    background-size: 100% 100%; 
     background-position: center;
     background-repeat: no-repeat; 
    border-radius: 50%;
}
