@import url('https://fonts.googleapis.com/css?family=Comfortaa:400,700|Orbitron:400,500,700|Roboto:400,700,900|Turret+Road:400,700&display=swap&subset=latin-ext');

body, html
{
    font-family: 'Oxygen', sans-serif;
    font-size: 1em;
    color: #CCCCCC;
    margin:0;
    padding:0;
}
#full_page
{
    position:absolute;
    left:0;
    top:0;
    right:0;
    bottom:0;
}
.form input[type=text], .form input[type=password]
{
    font-family: "Turret Road", sans-serif;
    font-size: 20px;
    padding: 8px;
    letter-spacing: normal;
    border: none;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    background-color: rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
}
.form input[type=text]::placeholder, .form input[type=password]::placeholder
{
    color: rgba(255,255,255,0.5);
}
.form input[type=password]::placeholder
{
    font-family: "Turret Road", sans-serif;
    font-size: 20px;
    letter-spacing: normal;
}
.form input[type=password]
{
    font: large Verdana,sans-serif;
    letter-spacing: 1px;
}
.form input[type=text]:focus, .form input[type=password]:focus
{
    background-color: rgba(255,255,255,0.4);
    color: rgba(255,255,255,0.9);
}
.form button
{
    border:1px solid rgba(0,0,0,0.6);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    background-color: rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.5);
}
.not_in_cloud label:after
{
    position: absolute;
    display: inline-block;
    content:" ";
    background-image: url(img/cloud-off-outline.svg);
    background-size: 18px 18px;
    width: 18px;
    height: 18px;
    margin-left: 8px;
}
.in_cloud label:after
{
    position: relative;
    display:inline-block;
    content:" ";
    background-image: url(img/cloud-check.svg);
    background-size: 18px 18px;
    width: 18px;
    height: 18px;
    margin-left: 8px;
}
html, body
{
    background-color: #060606;
}
#login_form
{
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -160px;
    margin-top: -200px;
    width: 320px;
    height: 400px;
    background-color: rgba(255,255,255,0.1);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}
#login_form .header
{
    width: 320px;
    height: 200px;
    vertical-align: bottom;
    text-align: center;
    font-size: 28px;
    /*font-family: 'Turret Road', sans-serif;
    font-weight: 700;*/
    font-family: 'Comfortaa', sans-serif;
    font-weight: 700;
}
#login_form #logo
{
    width: 240px;
    margin: 40px;
    margin-bottom: 8px;
}
#login_form input
{
    width: 224px;
    margin-left: 40px;
    margin-top:8px;
}
#login_form button#login_button
{
    height:56px;
    width:56px;
    float:right;
    margin-right: 40px;
    margin-top:8px;
    border: none;
    background-color: rgba(255,255,255,0.0);
    background-image: url(img/player_play.svg);
    background-size: 80px;
    background-position: center;
    filter: invert(30%);
    -webkit-filter: invert(30%);
}
#login_form button#login_button:hover
{
    cursor: pointer;
}