html,body{
    margin: 0;
    padding: 0;
}
*{
    box-sizing: border-box;
}

.app-screen{
    width: 480px;
    max-width: 480px;
    min-width: 480px;
    height: 768px;
    border: 1px solid black;
    overflow-y:hidden;
    margin: 15px auto;
    border-radius: 25px;
    position: relative;

}
.app-header{
    width: 100%;
    padding: 10px;
    background:white;
    height: 50px;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 9999999;
}
.app-body{
    width: 100%;
    /* padding: 10px; */
    background:#E3F0FF;
    height:100vh;

}
.app-footer{
    width: 100%;
    /* padding: 10px; */
     /* background: gray; */
    height: 50px;
    position: sticky;
    bottom: 0;
    left: 0;
    z-index: 99999;
}
.app-box{
    background-color: white;
    border: 1px solid rgb(255, 255, 255);
    border-bottom-left-radius: 20%;
    padding-right: 30px;
    padding-left: 30px;
}

form {
    display: flex;
    flex-direction: column;
  }
  
  
  .app-input-field {
    position: relative;
    border-bottom: 2px solid #000000;
    margin: 15px 0;
  }
  
  .app-input-field label {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    color: #000000;
    font-size: 16px;
    pointer-events: none;
    transition: 0.15s ease;
  }
  
  .app-input-field input {
    width: 100%;
    height: 40px;
    background: transparent;
    border: none;
    outline: none;
    font-size: 16px;
    color: #000000;
  }
  
  .app-input-field input:focus~label,
  .app-input-field input:valid~label {
    font-size: 0.8rem;
    top: 10px;
    transform: translateY(-120%);
  }
  
  .app-forget {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 25px 0 35px 0;
    color: #000000;
  }
  
  #remember {
    accent-color: #000000;
  }
  
  .app-forget label {
    display: flex;
    align-items: center;
  }
  
  .app-forget label p {
    margin-left: 8px;
    margin-top: 9px;
  }
  
  /* .wrapper a {
    color: #efefef;
    text-decoration: none;
  } */
  
  .wrapper a:hover {
    text-decoration: underline;
  }
  
  button {
    background: #5e19ff;
    color: #ffffff;
    padding: 12px 20px;
    cursor: pointer;
    transition: 0.3s ease;
    width: 241px;
    border-radius: 16px;
    margin: 0 auto;
    font-weight: bold;
    font-size: 20px;

  }
  
  /* button:hover {
    color: #fff;
    border-color: #fff;
    background: rgba(255, 255, 255, 0.15);
  } */
  
  .register {
    text-align: center;
    margin-top: 30px;
    color: #000000;
  }
  .app-img{
    margin-top: -17px;
    margin-left: -2px;
  }
  .app-text{
    margin-left: 28px;
  }
  .app-text-1{
    font-size: 25px;
    font-weight: bold;
  }