body{
    margin: 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-image    : linear-gradient(to bottom right, #969ed1, #1b1646);
    font-size: 25px;
    font-family: 'Candara';
    color: whitesmoke;
}

#fejlec{
    position: fixed;
    background-color: #2c2048;
    width: 100%;
    border-bottom: 3px solid rgba(255, 255, 255, 0.6);
}

#fejlec::before{
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    width: 30%;
    height: 0%;
    background: rgba(208, 209, 226, 0.2);
    transform: skewX(18deg) translateX(20px);
}

#nev{
    float: left;
    margin: 10px;
}

#neptunkod{
    float: right;
    font-variant:small-caps;
    margin: 10px;
}

#container{
    position: absolute;
    width: 500px;
    height: 350px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-right: 2px solid rgba(255, 255, 255, 0.4);
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
    background-color: #2c2048;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
}

#container::before{
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(208, 209, 226, 0.2);
    transform: rotate(75deg) translateX(10px) translateY(-200px);
    transition: transform 0.3s;
}

#container:hover::before{
    transform: rotate(75deg) translateX(10px) translateY(-350px);
}

form{
    position: absolute;
    width: 70%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

input[type=text], input[type=password]{
    color: whitesmoke;
    font-size: 20px;
    width: 100%;
    border: none;
    border-bottom: 2px solid white;
    background-color: rgba(101, 103, 126, 0.0);
    transition: background-color 0.5s;
}

input[type=text]:focus, input[type=password]:focus{
    background-color: rgba(101, 103, 126, 0.4);
}

input[type=submit]{
    position: relative;
    color: whitesmoke;
    font-size: 20px;
    width: 90%;
    height: 40px;
    border-radius: 10px;
    background-color: rgba(101, 103, 126, 0.5);
    left: 50%;
    transform: translate(-50%, 0%);
}

#label{
    margin-top: 20px;
    margin-bottom: 20px;
}