body, html {
    width:100%;
    height:100%;
    margin:0;
    padding:0;
}

body {
    font-family: 'InterTight', 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    background-color: white;    
}

div, input, button, form {
    box-sizing: border-box;
}

form {
    margin:0;
    padding:0;
}

input {
    text-align: center;
}

input, button {
    display:block;
    width: 100%;
    margin-bottom: 1vh;
    border:1px solid #CCC;
    border-radius:5px;
    font-size: 1.5vh;
    line-height:3vh;
    font-family:SpaceMono;
}

button {
    margin-top: 2vh;
    font-family:SpaceMono;
    font-weight: 400;
    font-size: 1.7vh;
    line-height:4.4vh;
    border:none;
    border-radius:5px;
    background: #88183E;
    color:white;
    cursor: pointer;
    box-shadow: 0 0.2vh 0.2vh rgba(0,0,0,0.4);
    transition:background-color 0.2s ease-out;
    user-select: none;
}

button:hover {
    background-color: #88183E;
}

#main {
    position: relative;
    top:0;
    left:0;
    width:100%;
    height:100%;
    
}

#login-container {
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    width:33vh;
    transform: translate(-50%, -50%);
}

#logo {
    background-image:url(images/logo.jpg);
    background-size:cover;
    background-repeat:no-repeat;
    background-position:center;
    width:33vh;
    height:33vh;
    border-radius:2vh;
    box-shadow: 0 0 1vh rgba(0,0,0,0.5);
    user-select:none;
    margin:auto;
}

.note1 {
    text-align: center;
    margin-bottom: 2vh;
    margin-top:2vh;
    color: #333;
    font-size: 1.5vh;
    line-height:2vh;
    font-weight: bold;
    user-select: none;
}

.note2 {
    text-align: center;
    color: #333;
    font-size: 1.5vh;
    line-height:2vh;
    margin-top:2vh;
    user-select: none;
}

#error {
    text-align: center;
    margin-bottom: 2vh;
    margin-top:2vh;
    color: #88183E;
    user-select: none;
}


@font-face { 
    font-family: 'Futura';  
    src: url(fonts/Futura-Condensed-Bold.otf) format('opentype'); 
} 

@font-face {
    font-family: SpaceMono;
    font-style: normal;
    src: url(fonts/SpaceMono.ttf);
}

@font-face {
    font-family: InterTight;
    font-style: normal;
    src: url(fonts/InterTight.ttf);
}