body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    display: flex;
    justify-content: center;
    align-items: space-between;
    flex-direction: column;
    background: #282a36;
    color: #fff;
}
.banner {
    /* The image used */
    background-image:
    url("../images/01.jpg");
    background-repeat :no-repeat;
    height: 100vh;
    width: 100%;
    background-position: center;
    background-size: cover;

  }
.banner .text-wrapper{
    text-align: center;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height:100%;
    width:100%;
    margin-top:65px;
}
.banner .text-wrapper h1{
    color: #fff;
    font-family: overpass,Sans-serif;
    font-size: 50px;
    font-weight: 800;
    text-transform: capitalize;
    line-height: 70px;
    letter-spacing: 0;
}
.banner .text-wrapper button{
    background-color: #e9204f; /* Green */
    border: none;
    color: white;
    padding: 20px 52px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
}
.otp-field {
    display: flex;
    justify-content: center;
    align-items: center;
}
.otp-field form{
    display:flex;
    gap:20px;
    
}

.otp-field input {
    /* width: 104px; */
    font-size: 32px;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    margin: 2px;
    border: 2px solid #55525c;
    background: #21232d;
    font-weight: bold;
    color: #fff;
    outline: none;
    transition: all 0.1s;
}

.otp-field input:focus {
    border: 2px solid #a527ff;
    box-shadow: 0 0 2px 2px #a527ff6a;
}

.disabled {
    opacity: 0.5;
}

.space {
    margin-right: 1rem !important;
}

.otp-field .btn{
    background-color: #e9204f; /* Green */
    border: none;
    color: white;
    border-radius: 7px;
    padding: 20px 52px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 24px;
    font-weight: bold;
}
.otp-field .btn:hover{
    background-color: #1aa1cc;
    color:#fff;
}
.banner .text-wrapper button:hover{
    background-color: #1aa1cc;
}
.form-field{
    background: #000;
    width: 100%;
}
.form-field .form{
    padding: 50px 0;
}
.form-field .form h1 {
    color: #fff;
    text-align: center;
}
@media (max-width:991px){
    .banner{
        height:81vh;
    }
}
@media (max-width:767px){
    .banner{
        height:64vh;
    }
    .banner .text-wrapper{
        margin-top:0;
    }
    .banner .text-wrapper h1{
        font-size:36px;
    }
    .otp-field form{
        flex-direction: column;
    }
    .otp-field input{
        font-size:24px;
    }
}
/* @media (min-width: 600px) and (max-width: 768px) {
    .banner {
      background-color: #de3163;
    }
  }

  @media (min-width: 600px) and (max-width: 768px) {
    .body {
      min-height: 92%;
    }
  }  
     */