.container {
 display: flex;
 justify-content: center;
 align-items: center;
 min-height: 100vh;
width: 100%;
background:linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);

}

.form-box {
    background:transparent;
    border: 2px solid white;
    width: 400px;
    height: 400px;
    border-radius: 20px;
    backdrop-filter:blur(500px) ;
    display: flex;
    justify-content: center;
    align-items: center;
}

h2 {
    font-size: 2em;
    text-align: center;
    font-style: italic;
}

button {
    display: block;
    margin: 0 auto;
    padding: 10px;
   margin-top: 10px;
   width: 150px;
   border-radius: 150px;
   cursor: pointer;
   background-color: #c2b7f3;
   border: solid 2px transparent;
   font-size: 15px;
   box-shadow: 2px 2px 4px rgb(156, 132, 184) ;
}

button:hover {
    color: white;
    background-color: rgb(225, 189, 241);
}

.bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  align-items: center;
  margin:0 auto;
 margin-top: 15px;

}


.inputbox {
    position: relative;
margin: 30px 0;
width: 310px;
border-bottom: 2px solid black;


}

.inputbox label {
    position: absolute;
    top: 50%;
        left: 50%;
        transform: translateY(-50%);
        font-size: 1em;
        transition: .5s;
}


input:focus~label,
input:valid~label {
    top: -5px;
}

.inputbox input {
    width: 100%;
    height: 50px;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1em;
    padding: 0px 35px 0px 5px;
}

.inputbox .icon {
    position: absolute;
    right: 8px;
    color: #fff;
    font-size: 1.2em;
    top: 20px;
}

h3 {
  position: absolute;  
  margin-top: 800px;
}