*{
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans',sans-serif;
}
section{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    
    background: url('images/background6.jpg')no-repeat;
    background-position: center;
    background-size: cover;
}
.form-box{
    position: relative;
    width: 400px;
    height: 450px;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;

}

.password{
 margin-left:25px;
}
.reg{
font-size:15px;
}

h2{
    font-size: 2em;
    color: #fff;
    text-align: center;
}

#Result{
    color:red;
    font-weight:600;
    position:relative;
    top:25px;
    left:4px;
}

.submit-btn{
   margin-top:10px;    
}

.inputbox{
    position: relative;
    margin: 30px 0;
    width: 310px;
    border-bottom: 2px solid #fff;
}
.inputbox label{
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    color: #fff;
    font-size: 1em;
    pointer-events: none;
    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:0 35px 0 5px;
    color: #fff;
}
.inputbox ion-icon{
    position: absolute;
    right: 8px;
    color: #fff;
    font-size: 1.2em;
    top: 20px;
}
.forget{
    margin: -15px 0 15px 1px ;
    font-size: .9em;
    text-align:center;
    color: #fff;
    display: flex;
    justify-content:center;  
}

.forget label input{
    margin-right:10px;
    
}
.forget label a{
    color:grey;
    text-decoration: none;
    font-weight:600;
}
.forget label a:hover{
    text-decoration: underline;
}
.submit-btn{
    width: 100%;
    height: 40px;
    border-radius: 40px;
    background: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    box-shadow:3px 0 10px rgba(0,0,0,0.5);
    font-size: 1em;
    font-weight: 600;
}
.register{
    font-size: .9em;
    color: #fff;
    text-align: center;
    margin: 25px 0 10px;
}
.register p a{
    text-decoration: none;
    color:grey;
    font-weight: 600;
}
.register p a:hover{
    text-decoration: underline;
}