
    @import url('https://fonts.googleapis.com/css2?family=Nunito:wght@800&display=swap');

body{
    width: 100%;
    height: 100%;
    max-width: 600px;
    max-height: 1000px;
    position: absolute;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 50%;
    font-family: 'Nunito', sans-serif;
}

.header-box{
    width: 100%;
    height: 500px;
    background-color: #2B69B2;
    border-radius: 0 70px 70px 70px;
}

.header-box img{
    width: 100%;
}

.formBox{
    width: 93%;
    height: 228px;
    padding: 10px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 10px 0 rgba(0,0,0,0.1);
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    bottom: 80px;
    z-index: 99;
    display: flex;
    justify-content: center;
}

form{
    width: 97%;
    margin-top: 10px;
}

.input-field{
  position: relative;
   width: 100%;
   height: 50px;
   padding: 0 15px;
   background-color: #fff;
   border-radius: 8px;
   border: 1.2px solid #ccc;
   margin-bottom: 15px;
}

#eye{
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    right: 16px;
    color: #2B69B2;
}

.input-field:hover{
    border: 1.2px solid #2B69B2;
}

.input-field input{
   width: 100%;
  height: 22px;
  margin-top: 22px;
  font-size: 14px;
  border: none;
  outline: none;
  background: transparent;
  color: #222;
  outline: none;
}
.input-field label{
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: #BBBBBB;
  font-size: 14px;
  pointer-events: none;
  transition: 0.3s;
}

input:focus ~ label,
input:valid ~ label{
  top: 10px;
  left: 15px;
  font-size: 13px;
  padding: 0 2px;
  background: transparent;
}

.btnkupon{
    width: 100%;
    padding: 9px;
    border: none;
    border-radius: 8px;
    background-color: #2B69B2;
    color: #fff;
    font-size: 14px;
}