body {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    height: 100vh;
    width: 100vw;
    background-color: #272A3F;
}

.login {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 400px;
    height: auto;
    background-color: #1D203C;
    color: white;
    padding: 8px 12px;
    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-bottom: 24px;
    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-bottom: 24px;
    font-weight: bold;
}

.login-img {
   width: 150px;
   padding-bottom: 12px;
}

.twitch-login {
   padding: 8px 12px;
   padding-left: 10px;
   padding-bottom: 10px;
   position: relative;
   width: 220px;
   color: white;
   text-decoration: none;
   font-weight: bold;
   background: #6441a5;
   background-image: url("../assets/img/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;
}

.twitch-login:hover {
   color: white;
   background: #6f49b6;
   background-image: url("../assets/img/twitch-hover.png");
   background-size: 26px;
   background-repeat: no-repeat;
   background-position: left;
   background-origin: content-box;
   border: 2px solid #442d7a;
}