.login-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.login-container {
    background-color: #ea861e;
    width: 75%;
    min-height: 30%;
    margin-left: auto;
    margin-right: auto;
    border: 25px solid #ea861e;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.login-title {
    font-size: 3rem;
}

.login-form {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.login-button {
    margin-left: 10px;
    background-color: #414040;
    color: #ea861e;
    border: 5px solid #414040;
    border-radius: 5px;
    box-shadow: 2px 2px 2px black;
}

.login-button:active {
    transform: translateX(2px) translateY(2px);
    box-shadow: -2px -2px 2px black;
}

#id_password {
    background-color: #414040;
    color: #ea861e;
}

.login-failed-msg {
    color: red;
}

.login-cookie-note {
    margin-top: 10px;
    font-size: 0.8rem;
    max-width: 550px;
}
