* {
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "segoe ui", roboto, oxygen, ubuntu, cantarell, "fira sans", "droid sans", "helvetica neue", Arial, sans-serif;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    height: 100vh;
    width: 100vw;
    background-color: #212121;
    margin: 0;
    padding: 0;
}

.login {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 400px;
    height: auto;
    background-color: #2b384b;
    color: white;
    box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
}

.login .error {
    border-radius: 4px;
    border: 2px solid #890b0b;
    background: #aa1313;
    width: 350px;
    text-align: center;
    margin: 0;
    color: white;
    padding: 8px 12px;
    margin-top: 8px;
    font-weight: bold;
}

.login .success {
    border-radius: 4px;
    border: 2px solid #0b610b;
    background: #0c920c;
    width: 350px;
    text-align: center;
    margin: 0;
    color: white;
    padding: 8px 12px;
    margin-top: 8px;
    font-weight: bold;
}

.login h1,
.login #timer {
    width: 100%;
    text-align: center;
    color: white;
    font-size: 24px;
    padding: 20px 0 20px 0;
    border-bottom: 1px solid #dee0e4;
    margin: 0;
}

.login form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 20px;
}

.login form label {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #3274d6;
    color: #ffffff;
}

.login form input[type="password"],
.login form input[type="text"] {
    width: 310px;
    height: 50px;
    border: 1px solid #dee0e4;
    margin-bottom: 20px;
    padding: 0 15px;
}

.login form input[type="submit"] {
    width: 100%;
    padding: 15px;
    margin-top: 20px;
    background-color: #3274d6;
    border: 0;
    cursor: pointer;
    font-weight: bold;
    color: #ffffff;
    transition: background-color 0.2s;
}

.login form input[type="submit"]:hover {
    background-color: #2868c7;
    transition: background-color 0.2s;
}

.pwd-forgot {
    text-decoration: none;
    color: #5b6574;
    font-size: 14px;
}

.twitch-login {
    padding: 8px 12px;
    padding-left: 10px;
    padding-bottom: 10px;
    position: relative;
    margin: 24px 0;
    width: 220px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    background: #6441a5;
    background-image: url(./twitch.png);
    background-size: 26px;
    background-repeat: no-repeat;
    background-position: left;
    background-origin: content-box;
    border: 2px solid #3a256b;
    border-radius: 5px;
    text-align: right;
}

/* Custom Scrollbar Style */
::-webkit-scrollbar-track {
    background-color: transparent;
    border-radius: 0;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-thumb {
    border-radius: 0;
    background-color: #babfb8;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}