 
@charset "UTF-8";

* {
    box-sizing: border-box;
    color: #333;
}

*, *:focus, *:hover {
    outline:none;
}

::placeholder {
    color: #ccc;
}

body {
    padding:20px;
    margin: 0;
    /*font-family: Helvetica, Arial, sans-serif;*/
    font-family: Raleway;
    font-size: 18px;
}

a:link { text-decoration:none; font-weight:normal; }
a:visited { text-decoration:none; font-weight:normal; }



@font-face {
    font-family: Raleway;
    src: url('../fonts/raleway.ttf');
}

@font-face {
    font-family: "microns";
    src: url("../fonts/microns.woff2") format("woff2");
}


.mu {
    font-family: microns;
    font-style: normal;
    font-weight: normal;
    speak: none;
    text-decoration: none;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    user-select: none;
}



.block {
    display: block;
}



.inline-block {
    display: inline-block;
}



.none {
    display: none;
}


.msg {
    font-weight: bold;
    color: #d34545;
}



#title {
    display:block;
    font-size: 50px;
    font-weight: bold;
    text-align: center;
    line-height:90px;
    margin-top:20px;
    user-select: none;
}

a#title:hover {
    text-decoration: underline;
}

#login_form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
}

#login_form input:first-child {
    margin-top: 0px;
}

#login_form * {
    width: 200px;
    height: 40px;
    text-align: center;
    margin-top: 10px;
}

#login_form input[type="submit"] {
    cursor: pointer;
}

#login_form #title {
    font-size: 45px;
    line-height: 45px;
    height: 55px;
}