* {
    margin: 0;
    padding: 0;
    font-family: "Open Sans", sans-serif;
  }

  section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    background-color: #DDDDDD;
    background-position: center;
    background-size: cover;
  }
  .form-box {
    position: relative;
    width: 500px;
    height: 100%;
    background:transparent;
    border: 3px solid rgba(119, 11, 122, 0.5);
    border-radius: 20px;
    backdrop-filter: blur(90px);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  h2 {
    font-size: 2em;
    color: #892291;
    text-align: center;
  }
  .inputbox {
    position: relative;
    margin: 30px 0;
    width: 310px;
    border-bottom: 2px solid #fff;
  }
  .inputbox label {
    position: absolute;
    top: 5%;
    left: 5px;
    transform: translateY(-50%);
    color: #040404;
    font-size: 1em;
    pointer-events: none;
    transition: 0.5s;
  }

  input:focus ~ label input:valid ~ label {
    top: -5px;
  }
  .inputbox input {
    width: 100%;
    height: 40px;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1em;
    padding: 0 35px 0 5px;
    color: #060606;
  }
  .inputbox ion-icon {
    position: absolute;
    right: 8px;
    color: #fff;
    font-size: 1.2em;
    top: 20px;
  }
  .forget {
    margin: -15px 0 15px;
    font-size: 0.9em;
    color: #fff;
    display: flex;
    justify-content: center;
  }
  .forget label input {
    margin-right: 3px;
  }
  .forget label a {
    color: #fff;
    text-decoration: none;
  }
  .forget label a:hover {
    text-decoration: underline;
  }
  #button {
    width: 100%;
    height: 40px;
    border-radius: 40px;
    background: #db68eb;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1em;
    font-weight: 400;    
  }
  /* .login a{
    text-align: center;
    padding-left: 180px;
    margin-bottom: 30px;
    text-decoration: none;
  } */
  .register {
    font-size: 0.9em;
    color: #fff;
    text-align: center;
    margin: 25px 0 25px;
  }
  .register p a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
  }
  .register p{
    color: #040404;
  }
  .register p a:hover {
    text-decoration: underline;
  }
  .inputbox .icon{
    margin-left: 100%;
    margin-bottom: -800px;
  }