html, body {
    width: 100%;
    height: 100%;

    margin: 0;
    padding: 0;

    background: #242424;

    color: #ffffff;
    font-family: 'Roboto', sans-serif;

    overflow: hidden;
}

/* Resets */
* {
    box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
    outline: none;
}

input, textarea, button {
    border: 0;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    box-shadow: none;
    background: transparent;
}

@-webkit-keyframes autofill {
    to {
        color: inherit;
        background: transparent;
    }
}

input:-webkit-autofill {
    -webkit-animation-name: autofill;
    -webkit-animation-fill-mode: both;
}

/* Buttons */
button {
    padding: 0 8px;

    margin: 0 8px;

    border-radius: 2px;

    font-size: 14px;
    font-weight: 500;
    line-height: 36px;
    text-align: center;

    cursor: pointer;
    transition: background 0.1s ease-out;
}
button:focus {
    outline: 0;
}
button:hover {
    background: rgba(255, 255, 255, 0.06);
}
button:disabled {
    color: rgba(255, 255, 255, 0.26);
    background: none;
}

/* Inputs */
.input-group {
    margin-bottom: 24px;
}
.input-group label {
    padding-top: 8px;
    padding-bottom: 4px;

    display: block;

    font-size: 12px;
    line-height: 12px;

    color: #5680e9;
}
.input-group input, .input-group textarea {
    width: 100%;
    height: 32px;

    padding-bottom: 4px;

    margin-bottom: 8px;

    display: block;

    font-size: 16px;
    line-height: 28px;

    outline: 0;

    transition: border 0.25s ease-out;

    border-bottom: 1px solid rgba(86, 128, 233, 0.7);
}
.input-group input:focus, .input-group textarea:focus {
    border-bottom: 2px solid rgba(86, 128, 233, 1);
}

/* Swtich */
.switch {
    margin-bottom: 8px;
}
.switch input {
    display: none;
}
.switch label {
    padding: 16px 0 16px 44px;

    position: relative;
    display: inline-block;

    font-weight: 500;
    text-align: left;

    cursor: pointer;
}
.switch label:before, .switch label:after {
    content: "";
    margin: 0;

    position: absolute;
    top: 50%;

    transform: translate(0, -50%);
    transition: all 0.3s ease;

    outline: 0;
}
.switch label:before {
    width: 34px;
    height: 14px;

    border-radius: 8px;

    left: 1px;

    background-color: rgba(255, 255, 255, 0.5);
}

.switch label:after {
    width: 20px;
    height: 20px;

    border-radius: 50%;

    left: 0px;

    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.switch input:checked + label:before {
    background: rgba(86, 128, 233, 0.5);
}

.switch input:checked + label:after {
    transform: translate(80%, -50%);
    background: rgba(86, 128, 233, 1);
}

.input-group.has-switch > * {
    display: inline-block;

    vertical-align: top;
}

.input-group.has-switch > .switch {
    float: right;
}

/* Logo */
.logo {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    text-align: center;

    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}
.logo .color {
    color: #5680e9;
}

#main-logo {
    font-size: 64px;
}

/* Navbar */
#navbar {
    width: 100%;

    position: relative;

    padding: 4px 16px;
    height: 32px;

    text-align: right;
    font-size: 12px;
}
#navbar > * {
    height: 24px;
    line-height: 24px;
    padding: 0px 8px;

    display: inline-block;

    border-radius: 2px;

    vertical-align: top;
}
#navbar > *:hover {
    background: rgba(255, 255, 255, 0.10);
}
#navbar .logo {
    position: absolute;
    top: 4px;
    left: 4px;

    font-size: 20px;
}
#navbar .help {
    font-family: 'Nunito', sans-serif;
    font-size: 20px;
}
