
div.login:before
{
    content: '';
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-image: url('../assets/images/backdrop-blue.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    -webkit-background-size: cover;
    background-size: cover;
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    filter: blur(5px);
}

div.login > div
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 350px;
    padding: 20px 40px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    z-index: 1000;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.4), -4px -4px 4px rgba(255,255, 255, 0.2);
}

div.login  img.avatar
{
    position: absolute;
    width: 80px;
    height: 80px;
    overflow: hidden;
    top: -41px;
    right: 32px;
    transform: scale(1.0);
}

div.login > div h2
{
    margin: 0;
    padding: 0 0 20px;
    color: #fff;
    text-align: center;
}

div.login > div p,
div.login > div div
{
    margin: 0;
    padding: 0;
    font-weight: bold;
    color: #fff;
}

div.login > div div
{
    display: flex;
    justify-content: space-between;
}

div.login > div span.forgot
{
    margin-right: -20px;
    font-weight: normal;
    font-size: 13px;
    padding: 0 6px;
    color: rgba(255, 255, 255, 0.5);
    transition-duration: 0.2s;
}

div.login > div span.forgot:before
{
    content: 'forgotten';
}

div.login > div span.forgot:hover:before
{
    content: 'send to the email above';

}


div.login > div span.forgot:hover
{
    color: rgba(255, 255, 255, 1);
    border-radius: 8px;
    box-shadow:
        -2px -2px 4px rgba(255, 255, 255, 0.2),
        2px 2px 5px rgba(0, 0, 0, 0.3);

}

div.login > div span.forgot:active
{
    box-shadow:
            -2px -2px 4px rgba(255, 255, 255, 0.04),
            2px 2px 4px rgba(0, 0, 0, 0.1);
}


div.login > div > form > div.feedback
{
    color: rgba(255, 255, 255, 1);
    background-color: rgba(255, 0, 0, 1);
    border-radius: 8px;
    font-weight: normal;
    padding: 4px;
    width: 80%;
    text-align: center;
    margin: 0 auto;
    position: relative;
    bottom: 6px;
    font-size: 12px;
    display: none;
}

div.login > div input
{
    width: 100%;
    margin-bottom: 20px;
    border-radius: 0;
}

#username,
#password,
#TFA
{
    border: none;
    border-bottom: 1px solid #fff;
    background: rgba(0, 0, 0, 0);
    outline: none;
    height: 40px;
    color: #fff;
    font-size: 16px;
    padding: 0 8px;
}

#TFA
{
    letter-spacing:15px;
    font-weight: bolder;
}

#username::placeholder,
#password::placeholder,
#TFA::placeholder
{
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 0;
    font-weight: normal;
}

#TFA.blocked
{
    font-weight: normal;
    rgba(255, 120, 120, 0.5);
}

#login.blocked
{
    opacity: 0.5;
}

div.login > div input[type=submit],
div.login > div input[type=button]
{
    height: 30px;
    color: rgba(0, 0, 0, 0.8);
    font-size: 15px;
    background: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    cursor: pointer;
    border-radius: 25px;
    border: none;
    outline: none;
}

div.login > div input[type=submit]:hover
{
    transform: translate(1px, -1px);
}

div.login > div input[type=submit]:active
{
    transform: translate(0px, 0px);
}

