.login-page {
    background-image: url("../img/login.gif");
    height: 100vh;
    background-repeat: no-repeat;
    background-size: 100vw 100vh;
    background-position: center;
    display: flex;
    align-items: center;
}

.login-head h2 {
    font-weight: bold;
}
.login-container {
    width: 20%;
    margin: auto;
    background-color: var(--background);
    border-radius: 10px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.discord {
 color: #5865f2; 
 font-weight: bold;  
}

.discord-button {
    background-color: #5865f2;
    padding: 1rem;
    border-radius: 5px;
    transition: background-color .17s ease,color .17s ease;
    color: var(--text);
}
.discord-button:hover {
    background-color: #4752c4;
    color: var(--text);
}

.login-head {
    height: 50px;
    text-align: center;
}

.login-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

.logo {
    width: 100px;
    margin-bottom: 2rem;
}

@media only screen and (max-width: 600px) {
    .login-page {
        background-size: auto 100vh;
    }
    .login-container {
        width: 90%;
    }
    .discord-button {
        margin-top: 2rem;
    }
  }