.login-wrapper{
    background-image: url(../images/login/banner.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.right-bg{
    background: #F5F5F5;
}
.form-wrapper{
    border-radius: 10px;
    background: #fff;
    max-width: 600px;
    padding:30px;
    margin:0 auto;
    box-shadow: 0px 2px 11px 0px rgba(181, 181, 181, 0.25);
}

.form-wrapper label{
    font-weight: 500;
}
.form-wrapper h1{
    font-size: 30px;
    font-weight: 700;
    color: rgba(47, 47, 47, 1);
    font-family: 'Audiowide', sans-serif;
}
.form-wrapper p{
    font-size: 16px;
    font-weight: 400;
    color: rgba(102, 102, 102, 1);
}
.form-wrapper h3{
    color: #333;
font-family: Rubik;
font-size: 15px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
.form-wrapper a{
    color: #66B645;
font-family: Rubik;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
.form-wrapper .otp-btn{
    border-radius: 12px;
background: #66B645;
width: 100%;
padding:10px;
border:none;
margin-top:15px;
color:#fff;
font-weight: 500;
}
.form-wrapper .otp-btn a{
color:#fff;
font-weight: 500;
}

.login-content{
    text-align: center;
    padding-top: 10rem;
}
.login-content h2{
    color: #FFF;
    text-align: center;
    font-family: 'Audiowide', sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px; /* 214.286% */
    text-transform: uppercase;
}
.login-content p{
    color: #FFF;
text-align: center;
font-family: Rubik;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 30px; /* 187.5% */
margin-top:15px;
}

.otp-form input {
    margin-right:1rem;
    padding: 1rem;
    text-align: center;
    width: inherit;
  }
  
  /* remove the up/down spinner in number input
     source - https://css-tricks.com/snippets/css/turn-off-number-input-spinners/
  */
  .otp-form  input[type=number]::-webkit-inner-spin-button, 
  .otp-form  input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none; 
    margin: 0; 
  }
  
  .password-input  .input-group-text {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    white-space: inherit;
    background-color: transparent;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.input-group-text .fa{
    color:#000;
}

@media (max-width:1200px){
    .otp-form input {
        margin-right:5px;
    }
}



@media (max-width:992px){
    .login-content {
        padding-top: 2rem;
    }
}

@media (max-width:577px){
    .login-content h2 {
        font-size: 18px;
        line-height: 27px;
    }
    .login-content p {
        font-size: 14px;
    }
    .form-wrapper h1 {
        font-size: 24px;
    }
    .form-wrapper p {
        font-size: 14px;
    }
}