*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Times New Roman', Times, serif;
}
body{
    background-size: cover;
    background: url("../images/background.jpg") no-repeat;
    background-size: cover;
    background-position: center;
}
.box{
    padding: 30px 40px;
    width: 420px;
    color: #fff;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(20px);
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
}
.input-box{
    position: relative;
    margin: 30px 0;
    width: 100%;
    height: 50px;
}
.input-box input{
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    border-radius: 40px;
    border: 2px solid rgba(255, 255, 255, .2);
    color:#fff;
    padding: 20px 45px 20px 20px;
}
.input-box input::placeholder{
    color: #fff;
}
.input-box ion-icon{
    position: absolute;
    right: 20px;
    top: 50%;
    transform:translateY(-50%);
    font-size: 20px;
    color: #fff;
}
.register-link{
    font-size: 14.5px;
    text-align: center;
    margin-top: 20px;
}
.register-link p a{
    color:#fff;
    text-decoration: none;
    font-weight: 600;
}
.register-link p a:hover{
        text-decoration: underline;
}
.toggle-password{
    cursor: pointer;
}
.register .input-box{
    margin: 10px;
}