body{
    width: 100%;
    height: 99%;

}


/* note */

.warnnig{
    width:48%;
    height:48%;
    padding: 10px;
    font-family: 'Cutive Mono', monospace;
    text-align: center;
    position: fixed;
    z-index: 999;
    margin-left: 25%;
    margin-right: 25%;
    overflow-y: auto;
    background-color: white;
    top: 25%;
    visibility: visible;
    /* border: #000000 solid 1px; */
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}
.warnnig h1{
    font-size: 30px;
}
.warnnig span{
    font-weight: lighter;
    margin-top: 15px;
}
.overlay{
    background-color: rgb(255, 255, 255);
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 99;
    visibility: visible;
    background-size: cover;

}
/* accept hover animation */

.hover-underline-animation {
    display: inline-block;
    position: relative;
    color: #000000;
    cursor: pointer;
  }
  
  .hover-underline-animation::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #000000;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
  }
  
  .hover-underline-animation:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
  }

  .card{
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  }
/* ***** otp interface */

@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700&display=swap");

.otp-section {
  background-color: rgb(255, 255, 255);
  /* display: flex; */
  display: none ;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  font-family: "Lato", sans-serif;

  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}


.otp-section section {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-around;
  width: 40vw;
  min-width: 350px;
  height: 80vh;
  background-color: white;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  padding: 24px 0px;
}
.otp-section svg {
  margin: 16px 0;
}
.otp-section title {
  font-size: 20px;
  font-weight: bold;
}

.otp-section p {
  color: #a3a3a3;
  font-size: 14px;
  width: 200px;
  margin-top: 4px;
}
.otp-section input {
  width: 32px;
  height: 32px;
  text-align: center;
  border: none;
  border-bottom: 1.5px solid #d2d2d2;
  margin: 0 10px;
}

.otp-section input:focus {
  border-bottom: 1.5px solid deepskyblue;
  outline: none;
}

.otp-section button {
  width: 250px;
  letter-spacing: 2px;
  margin-top: 24px;
  padding: 12px 16px;
  border-radius: 8px;
  border: none;
  background-color: #33cdff;
  color: white;
  cursor: pointer;
}

/* end otp interface */

/* reset password */

.reset-password {
  background-color: rgb(255, 255, 255);
  /* display: flex; */
  display: none;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  font-family: "Lato", sans-serif;

  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.reset-password section {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-around;
  width: 40vw;
  min-width: 350px;
  height: 80vh;
  background-color: white;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  padding: 24px 0px;
}
.reset-password form{
  
  width: 80%;
}
.reset-password .btn{
  margin-top: 10px;
  width: 80%;
}
#resetani{
  width: 40%;
}

/* end reset password */
  @media only screen and (max-width: 600px) {
    .warnnig{
      width:100%;
margin: 0;
    }

  }


  /* footer designe */
  .footer{
    position: static;
    text-align: center;
    bottom: 10px;
    width: 100%;
 
  }
  .footer a{
    color: #fcb404;
  }

  /* other element */
  .hilight{
    background-color: aliceblue;
  }