@font-face {
    font-family: 'Orbitron';
    font-style: normal;
    font-weight: 400;
    src: local('Orbitron Regular'), local('Orbitron-Regular'), url(Orbitron-Regular.ttf) format('truetype');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#background-canvas {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

body {
    display: flex;
    text-align: center;
    color: #000;
    justify-content: center;
    align-items: center;
}

form {
    user-select: none;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    -webkit-box-shadow:  10px 10px 24px -5px rgba(105, 105, 105, 1);
    -moz-box-shadow:  10px 10px 24px -5px rgba(105, 105, 105, 1);
    box-shadow:  10px 10px 24px -5px rgba(105, 105, 105, 1);
    max-width: 400px;
    font-family: 'Orbitron';
    border-radius: 15px;
    padding: 0 20px;
}

input {
    display: block;
    clear: both;
    width: 70%;
    border-radius: 5px;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
}

input:focus, input:active {
    outline: none;
}

#log-in-btn {
    min-width: 30%;
    cursor: pointer;
    margin-bottom: 20px;
    background-color: #c4323500;
    border: 1px solid #4dade9;
    color: #000;
    font-weight: bold;
    font-family: 'Orbitron';
}

#log-in-btn:hover {
    background-color: #4dade9;
    color: #fff;
}

.help-block {
    padding: 5px 0;
}

/* //////////////////////////////////////////////////////// */

/* Declare rules for all displays under the width of 1360px */

/* Mainly ment for mobile users                             */

/* //////////////////////////////////////////////////////// */

@media only screen and (max-width: 720px) {
    form {
        width: 70%;
    }
    form p {
        display: none;
    }
    input {
        font-size: 1.2em;
        border-radius: 10px;
    }
    #log-in-btn {
        background-color: #4dade9;
        color: #fff;
    }
    html, body {
        overflow: hidden;
    }
}