html{
    height: 100%;
}

body{
    margin: 0;
    padding: 0;
    color: white;
    background: rgb(2,0,36);
    background: linear-gradient(180deg, rgba(2,0,36,1) 10%, rgba(39,38,143,1) 50%, rgba(0,212,255,1) 100%);
    background-size: cover;
    background-repeat: no-repeat;
    font-family: "Kalam", cursive;
    font-weight: 400;
    font-style: normal;
}

.login-input{
    outline: none;
    display: block;
    width: 400px;
    height: 50px;
    color: white;
    border: 1px solid transparent;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.3);
    padding-left: 20px;
    padding-right: 20px;
    transition: 0.3s;
}

.login-input:hover{
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.4);
}

::placeholder{
    color: white;
}

.login-box{
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    width: 500px;
    justify-content: center;
    align-items: center;
}

#login-form{
    display: flex;
    flex-direction: column;
    align-items: center;
}

#login-form > label{
    width: 400px;
    text-align: left;
    font-size: 25px;
}

.login-header{
    text-align: center;
    font-size: 40px;
}

#login-submit{
    width: 160px;
    height: 50px;
    color: white;
    background-color: #010152;
    border-radius: 25px;
    font-size: 14px;
    box-shadow: 0 0px 30px 0 rgba(0,212,255,.5);
    transition: all .4s;
    border: none;
}

#login-submit:hover{
    background-color: #0404bf;
    cursor: pointer;
}