*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(45deg,#be4eff,#92c2fd);
}

.box{
    background: #fff;
    max-width: 500px;
    width: 100%;
    padding: 35px 40px;
    box-shadow: 15px 15px rgba(0,0,0,0.1);
    border-radius: 5px;
}

.box h3{
    position: relative;
    font-size: 30px;
    color: #ccc;
    letter-spacing: 0.1em;
    font-weight: 500;
    margin-bottom: 15px;
}

.box #form{
    position: relative;
}

.box #form #email{
    /* width: 400px; */
    width: 100%;
    outline: none;
    border: none;
    border-bottom: 2px solid #333;
    color: black;
    padding: 10px 0;
    font-weight: 500;
    font-size: 1.2em;
    letter-spacing: 0.1em;
    /* text-transform: uppercase; */
}

.box #email{
    padding: 10px 17px;
}

#text{
    display: block;
    color: #999;
    font-weight: 500;
    padding: 5px 0;
    text-transform: uppercase;
    letter-spacing: 0.1em

}

.box #form.invalid .inputbox::before{
    content: '';
    position: absolute;
    right: 0;
    top: 12px;
    width: 24px;
    height: 24px;
    background: url(download.png);
    background-size: cover;

}

.box #form.valid .inputbox::before{
    content: '';
    position: absolute;
    right: 0;
    top: 12px;
    width: 24px;
    height: 24px;
    background: url(0-5489_green-check-in-circle-hd-png-download.png);
    background-size: cover;

}


.wrapper {
    /* width: 450px; */
    max-width: 500px;
    width: 100%;
    overflow: hidden;
    padding: 28px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 15px 15px rgba(0,0,0,0.1);
  }

  .wrapper h3{
    position: relative;
    font-size: 30px;
    color: #ccc;
    letter-spacing: 0.1em;
    font-weight: 500;
    margin-bottom: 15px;
}
  .wrapper .pass-field {
    height: 65px;
    width: 100%;
    position: relative;
  }
  .pass-field input {
    width: 100%;
    outline: none;
    border: none;
    border-bottom: 2px solid #333;
    color: black;
    height: 100%;
    /* outline: none; */
    padding: 10px 0;
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    /* border-radius: 5px; */
    /* border: 1px solid #999; */
  }
  .pass-field input:focus {
    padding: 0 16px;
    border: 2px solid #4285F4;
  }
  .pass-field i {
    right: 18px;
    top: 50%;
    font-size: 1.2rem;
    color: #999;
    cursor: pointer;
    position: absolute;
    transform: translateY(-50%);
  }
  .wrapper .content {
    margin: 20px 0 10px;
  }
  .content p {
    color: #333;
    font-size: 1.3rem;
  }
  .content .requirement-list {
    margin-top: 20px;
  }
  .requirement-list li {
    font-size: 1.3rem;
    list-style: none;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }
  .requirement-list li i {
    width: 20px;
    color: #aaa;
    font-size: 0.6rem;
  }
  .requirement-list li.valid i {
    font-size: 1.2rem;
    color: #4285F4;
  }
  .requirement-list li span {
    margin-left: 12px;
    color: #333;
  }
  .requirement-list li.valid span {
    color: #999;
  }
  
  @media screen and (max-width: 500px) {
    body, .wrapper {
      padding: 25px;
    }
    .box{
        padding: 30px 25px;
    }
    .wrapper .pass-field {
      height: 55px;
    }
    .pass-field input, .content p  {
      font-size: 1.15rem;
    }
    .pass-field i, .requirement-list li {
      font-size: 1.1rem;
    }
    .requirement-list li span {
      margin-left: 7px;
    }
  }



















