h1 {
    font-size: 1.5rem;
}

.container {
    max-width: 30rem;
}

.row {
    padding: 8px 0;
}

#login-form {
    padding: 1rem;
    background-color: #f0f7fb;
    border: 1px solid #69c;
}

.logo {
    height: auto;
    width: auto;
    max-height: 80px;
    max-width: 300px;
}

.container a, .container a:hover {
    text-decoration: none;
    color: #333;
    color: var(--dark);
}

.alert a, .alert a:hover {
    text-decoration: underline;
    color: inherit;
}

.alert a:hover {
    text-decoration: none;
}

input.user-input {
    padding: 5px 7px 5px 30px;
    background-repeat: no-repeat;
    background-position: left center;
    border: 1px solid #ccc;
}

input.user-input:focus {
    border: 1px solid #69c;
}

.btn {
    font-size: 120%;
}

#submit_login {
    color: #333;
    margin-top: 8px;
    background: #eee;
    border: 1px solid #ccc;
}

#submit_login:active {
    background: #fff;
    border: 1px solid #69c;
}

#submit_login:hover {
    border: 1px solid #69c;
}

#submit_login:disabled {
    color: #ccc;
    background: #fff;
}

@keyframes animateLogin {
    0%   {color: #ccc;}
    50%  {color: #69c;}
    100% {color: #fff;}
}

#loader {
    font-size: 150%;
    line-height: 50%;
    font-weight: bolder;
    animation-name: animateLogin;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

#cookieMsg {
    visibility: hidden;
    font-weight: bold;
}

footer {
    background-color: transparent;
    border: none;
}