*{
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans',sans-serif;
}

body{
    background: url(images/background6.jpg) no-repeat;
    background-position: center;
    background-size:cover;
    min-height:100vh;
    width:100%;
}

.container{
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:100vh;
}

.form-box{
    position: relative;
    width: 400px;
    height: 550px;
    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;

}

.form-box h2{
    color:#fff;
    text-align:center;
    font-size:32px;
}

.form-box .input-box{
    position:relative;
    margin:31px 0;
    width:310px;
    border-bottom:2px solid #fff;
}

.form-box .input-box input{
    width:100%;   
    height:45px;
    background:transparent;
    border:none;
    outline:none;
    padding:0 20px 0 5px;
    color:#fff;
    font-size:16px;
}

i{
    position:absolute;
    color:#fff;
    top:13px;
    right:0;
}

input::placeholder{
    color: #fff;   
}

.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;
}

.group{
    display:flex;
    justify-content:center;
}

.group p {
    color:white;
    position:relative;
    top:20px;
    text-decoration:none;
    font-weight:500;
    right:5px;
}

.group span a{
    color:grey;
    position:relative;
    top:20px;
    text-decoration:none;
    font-weight:600;
}

.group a:hover{
 text-decoration: underline;   
}

#Result{
    color:red;
    font-weight:600;
    position:relative;
    top:25px;
}
.popup{
    width:400px;
    background-color: #fff;
    box-shadow:3px 0 10px rgba(0,0,0,0.5);
    border-radius:6px;
    position:absolute;
    top:0;
    left: 50%;
    transform: translate(0, 0) scale(0);
    transition:transform .4s , top .4s;
    visibility:hidden;
    text-align:center;
    padding:0 30px 30px;
    height: 330px;
}
.popup ion-icon.complete{
    color:green;   
    font-size:150px;
}
.popup ion-icon#x{
    font-size:30px;
    position:absolute;
    top:5px;
    right:5px;
    cursor: pointer;
}
.popup button{
    width: 100%;
    padding:10px 0;
    margin-bottom:10px;
    border:none;
    outline:none;
    font-size:18px;
    border-radius:40px;
    cursor: pointer;
    box-shadow:0 0 2px rgba(0,0,0,0.5);
}
.popup #registered{
    color: black;
    margin-top:8px;
    font-size: 35px;
    font-weight: 600;
}
.popup p{
    color:grey;
    font-size:12px;
}
.popup a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
    letter-spacing:2px;
}
.open-slide{
    top:50%;
    transform: translate(-50%, -50%) scale(1);
    visibility:visible;
}
.close-slide{
    transform:none;
    visibility:hidden;    
}