.login {
    display: flex;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    background-image: url("../img/15.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#login-link {
    text-decoration: none;
    font-size: 1.2rem;
    border: 1px solid #fff;
    padding: 0.5rem;
    border-radius: 5px;
    background-color: #007bc2;
    color: #fff;
}

.login-container-link {
    margin-top: 1rem;
    margin-bottom: 2rem;
}

#login-link:hover {
    background-color: #fff;
    color: #007bc2;
    border: 1px solid #007bc2;
    transition: 0.1s;
}

.login-container {
    width: 100%;
    max-width: 400px;
    margin: 8rem auto auto;
    padding: 1rem;
    border: 1px solid black;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    overflow: hidden;
    background-color: #fff;
}

.login-container-logo {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.login-header-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    margin: 2rem 0;
    text-align: center;
}

.login-header-logo img {
    display: block;
    margin: auto;
}

.login-header-logo > * {
    margin: 0 1rem;
}

#logo {
    width: 100%;
    max-width: 200px;
}

#qg-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #007bc2;
}

.login-container-error {
    color: #dc2b2b;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}