*{
    margin: 0;
    padding: 0;
    font-family: 'poppins', sans-serif;
}
section{
    display: flex;
    position: absolute;
    justify-content: center;
    align-items: center;
    min-height: 100svh;
    width: 100%;
}
.form-box{
    position: relative;
    width: auto;
    max-width: 420px;
    height: auto;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    display: flex;
    justify-content: center;
    align-items: center;
}
h2{
    padding-top: .45em;
    font-size: 2em;
    color: #111;
    text-align: center;
}
.inputbox{
    position: relative;
    margin: 30px 0px;
    width: 100%;
    border-bottom: 2px solid #111;
}
.inputbox label{
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-70%);
    color: #111;
    font-size: 1em;
    pointer-events: none;
    transition: .5s;
}
.inputbox label{
top: -5px;
}
.inputbox input {
    width: 100%;
    height: 50px;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1em;
    padding:0 35px 0 5px;
    color: #111;
}
.inputbox ion-icon{
    position: absolute;
    right: 8px;
    color: #111;
    font-size: 1.2em;
    top: 20px;
}
button{
    width: 100%;
    height: 40px;
    border-radius: 40px;
    background: #111;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    color: #fff
}
.rules{
    font-size: .9em;
    font-weight: bold;
    color: #111;
    text-align: center;
    margin: 25px 0 10px;
}