body {
   display: flex;
   align-items: center;
   justify-content: center;
   position: absolute;
   height: 100vh;
   width: 100vw;
   background: url(../assets/img/background.png);
   background-color: #0d0d0d;
}

.login {
   display: flex;
   flex-direction: column;
   align-items: center;
   width: 360px;
   height: auto;
   background-color: rgba(0,0,0,0.75);
   color: white;
   padding: 8px 12px;
   box-shadow: 6px 6px 10px 2px rgb(0 0 0 / 30%);
}

.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: 300px;
   padding-bottom: 18px;
}

.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;
}