*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

   font-family:Arial,sans-serif;

    height:100vh;

    overflow:hidden;

    display:flex;

    justify-content:center;

    align-items:center;

    background:

    linear-gradient(
        rgba(5,18,32,.45),
        rgba(5,18,32,.55)
    ),

    url("../img/background.jpg");

    background-size:cover;

    background-position:center;

}

.login-screen{

    width:100%;
    height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

}

.login-box{

    width:420px;

    padding:60px 50px;

    border-radius:32px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(25px);

    border:1px solid rgba(255,255,255,.12);

    box-shadow:
        0 20px 60px rgba(0,0,0,.35);

}
.login-box h1{

    color:white;

    font-size:72px;

    font-weight:300;

    letter-spacing:10px;

    text-align:center;

}
.login-box p{

    color:white;

    text-align:center;

    margin-top:10px;

    margin-bottom:30px;

}

.login-box input{

    width:100%;

    height:60px;

    padding:0 22px;

    margin-top:18px;

    border-radius:18px;

    border:1px solid rgba(255,255,255,.15);

    background:rgba(255,255,255,.15);

    color:white;

    font-size:17px;

    outline:none;

    transition:.3s;

}
.login-box button{

    width:100%;

    height:60px;

    margin-top:25px;

    border:none;

    border-radius:18px;

    background:white;

    color:#12324A;

    font-size:18px;

    cursor:pointer;

    transition:.35s;

}
.login-box input::placeholder{

    color:rgba(255,255,255,.65);

}
.login-box input:focus{

    border-color:#74C7FF;

    background:rgba(255,255,255,.18);

}
.login-box button:hover{

    background:#5DB7FF;

    transform:translateY(-2px);

}
.line{

    width:80px;

    height:2px;

    margin:20px auto 35px;

    background:rgba(255,255,255,.25);

}