.otpbody {
    height: 600px;
    display: grid;
    place-items: center;
    /* background-color: #EAF5F6; */
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    /* background:radial-gradient(ellipse at center, rgba(255,254,234,1) 0%, rgba(255,254,234,1) 35%, #B7E8EB 100%); */
    overflow: hidden;
}
  
  .otpbox {
    width: 600px;
    padding: 50px;
    background-color: #ffffff;
    border-radius: 25px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.5);
  }
  
  h3.title {
    font-size: 28px;
    font-weight: 700;
    color: #093030;
    margin-bottom: 25px;
  }
  
  p.sub-title {
    color: #B5BAB8;
    font-size: 14px;
    margin-bottom: 25px;
  }
  
  p span.phone-number {
    display: block;
    color: #093030;
    font-weight: 600;
  }
  
  .wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    justify-items: space-between;
}
  
  .wrapper input.field {
    width: 50px;
    line-height: 75px;
    font-size: 32px;
    border: none;
    background-color: #EAF5F6;
    border-radius: 5px;
    text-align: center;
    text-transform: uppercase;
    color: #093030;
    margin-bottom: 25px;
  }
  
  .wrapper input.field:focus {
    outline: none;
  }
  
  button.resend {
    background-color: transparent;
    border: none;
    font-weight: 600;
    color: #3DAFE1;
    cursor: pointer;
  }
  
  button.resend i {
    margin-left: 5px;
  }

  button.verify-button {
    --primary-color: #3DAFE1;
    --secondary-color: #fff;
    --hover-color: #111;
    --arrow-width: 10px;
    --arrow-stroke: 2px;
    box-sizing: border-box;
    position: relative;
    left: 23rem;
    top: 2rem;
    border: 0;
    border-radius: 20px;
    color: var(--secondary-color);
    padding: 1em 1.8em;
    background: var(--primary-color);
    display: flex;
    transition: 0.2s background;
    align-items: center;
    gap: 0.6em;
    font-weight: bold;
  }
  
  button .arrow-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  button .arrow {
    margin-top: 1px;
    width: var(--arrow-width);
    background: var(--primary-color);
    height: var(--arrow-stroke);
    position: relative;
    transition: 0.2s;
  }
  
  button .arrow::before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    border: solid var(--secondary-color);
    border-width: 0 var(--arrow-stroke) var(--arrow-stroke) 0;
    display: inline-block;
    top: -3px;
    right: 3px;
    transition: 0.2s;
    padding: 3px;
    transform: rotate(-45deg);
  }
  
  button:hover {
    background-color: var(--hover-color);
  }
  
  button:hover .arrow {
    background: var(--secondary-color);
  }
  
  button:hover .arrow:before {
    right: 0;
  }

  @media (max-width: 576px) {
    .otpbody {
        height: 500px;
        width: 420px;
        display: grid;
        place-items: center;
        /* background-color: #EAF5F6; */
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        font-family: 'Poppins', sans-serif;
    
      }
      
      .otpbox {
        width: 380px;
        padding: 50px;
        background-color: #ffffff;
        border-radius: 25px;
      }
      
      h3.title {
        font-size: 28px;
        font-weight: 700;
        color: #093030;
        margin-bottom: 25px;
      }
      
      p.sub-title {
        color: #B5BAB8;
        font-size: 14px;
        margin-bottom: 25px;
      }
      
      p span.phone-number {
        display: block;
        color: #093030;
        font-weight: 600;
      }
      
      .wrapper {
        width: 115%;
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        justify-items: space-between;
        position: relative;
        right: 1rem;
        
    }
      
      .wrapper input.field {
        width: 50px;
        line-height: 75px;
        font-size: 32px;
        border: none;
        background-color: #EAF5F6;
        border-radius: 5px;
        text-align: center;
        text-transform: uppercase;
        color: #093030;
        margin-bottom: 25px;
      }
      
      .wrapper input.field:focus {
        outline: none;
      }
      
      button.resend {
        background-color: transparent;
        border: none;
        font-weight: 600;
        color: #3DAFE1;
        cursor: pointer;
      }
      
      button.resend i {
        margin-left: 5px;
      }
    
      button.verify-button {
        --primary-color: #3DAFE1;
        --secondary-color: #fff;
        --hover-color: #111;
        --arrow-width: 10px;
        --arrow-stroke: 2px;
        box-sizing: border-box;
        position: relative;
        left: 11rem;
        top: 2rem;
        border: 0;
        border-radius: 20px;
        color: var(--secondary-color);
        padding: 1em 1.8em;
        background: var(--primary-color);
        display: flex;
        transition: 0.2s background;
        align-items: center;
        gap: 0.6em;
        font-weight: bold;
      }
      
      button .arrow-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
      }
      
      button .arrow {
        margin-top: 1px;
        width: var(--arrow-width);
        background: var(--primary-color);
        height: var(--arrow-stroke);
        position: relative;
        transition: 0.2s;
      }
      
      button .arrow::before {
        content: "";
        box-sizing: border-box;
        position: absolute;
        border: solid var(--secondary-color);
        border-width: 0 var(--arrow-stroke) var(--arrow-stroke) 0;
        display: inline-block;
        top: -3px;
        right: 3px;
        transition: 0.2s;
        padding: 3px;
        transform: rotate(-45deg);
      }
      
      button:hover {
        background-color: var(--hover-color);
      }
      
      button:hover .arrow {
        background: var(--secondary-color);
      }
      
      button:hover .arrow:before {
        right: 0;
      }    

}