body {
    margin: 0px;
}
.login-bg {
    background-color: #f1e6d4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.login-header-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    direction: rtl;
}
.login-header {
    font-family: 'Tinos', sans-serif;
    font-weight: 200;
    font-size: 68px;
    color: #c9a227;
    -webkit-text-stroke: 3px #e4b88a;
}
@media screen and (max-width: 365px) {
    .login-header {
        font-size: 60px;
    }
}
@media screen and (max-height: 700px) {
    .login-header {
        font-size: 60px;
    }
}
.login-sub-header {
    font-family: 'Tinos', sans-serif;
    font-size: 28px;
    color: #555555;
}
.login-header-row {
    padding: 5px;
}
.login-sub-header-row {
    padding: 3px;
}
.login-button-1 {
    font-family: sans-serif;
    font-size: 24px;
    font-weight: bold;
    background-color: #c9a227;
    color: white;
    margin: 12px;
    padding: 10px 20px;
    border-radius: 50px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
.login-button-2 {
    font-family: sans-serif;
    font-size: 24px;
    font-weight: bold;
    background-color: #f8dda5;
    color: #c9a227;
    margin: 12px;
    padding: 10px 20px;
    border-radius: 50px;
    border: 2px solid #c9a227;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
.login-button-1:hover {
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
.login-button-2:hover {
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
.login-container {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    font-family: 'Tinos', sans-serif;
    -webkit-box-shadow: 0px 0px 6px 3px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 6px 3px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 6px 3px rgba(0,0,0,0.75);
    direction: rtl;
}
.login-heading {
    font-size: 30px;
    margin-bottom: 10px;
}
.login-submit {
    background-color: #c9a227;
    color: white;
    border-radius: 50px;
    border: 0px;
    padding: 6px 40px;
    margin: 10px 0px;
    width: 100%;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
.login-submit:hover {
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}
#credentials-header {
    font-size: 36px;
    margin-bottom: 10px;
}
#id_username {
    background-color: #f8dda5;
    border: 0px;
    padding: 5px;
    border-radius: 5px;
}
#id_password {
    background-color: #f8dda5;
    border: 0px;
    padding: 5px;
    border-radius: 5px;
}
td {
    display: block;
}
.login-image {
    height: 30px;
    width: 30px;
}
.reset-pass {
    padding-top: 12px;
}
.privacy {
    margin-top: 15px;
    font-size: 12px;
}
.hidden {
  display: none;
}
