body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  background-color: #e8dcd0;
  font-family: "Lora", serif;
  overflow-x: hidden;
}

@media(min-width: 600px ) {
  body {
    padding-left: 100px;
    padding-right: 100px;
  } 
}

@media(min-width: 769px ) {
  body {
    padding-left: 200px;
    padding-right: 200px;
  } 
}

@media(min-width: 1025px ) {
  body {
    padding-left: 300px;
    padding-right: 300px;
  } 
}

@media(min-width: 1201px ) {
  body {
    padding-left: 400px;
    padding-right: 400px;
  } 
}

@media(min-width: 1401px ) {
  body {
    padding-left: 500px;
    padding-right: 500px;
  } 
}

@media(min-width: 1601px ) {
  body {
    padding-left: 600px;
    padding-right: 600px;
  } 
}

@media(min-width: 1801px ) {
  body {
    padding-left: 700px;
    padding-right: 700px;
  } 
} 

@media(min-width: 2001px ) {
  body {
    padding-left: 800px;
    padding-right: 800px;
  } 
}

#login_section {
  width: 100%;
  max-width: 1200px; /* Optional */
  padding: 60px;
}

#logo {
  width: 60%;
  align-self: center;
}

#login_title {
  text-align: center;
}

#login_form {
  display: flex;
  align-items: center;
  flex-direction: column;
}

#login_form label {
  font-size: 20px;
  font-weight: 600;
  align-self: flex-start;
}

#login_form input {
  font-family: "Lora", serif;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  border-width: 1px;
  border-color: black;
  padding: 15px;
  box-sizing: border-box;
}
.button {
  font-family: "Lora", serif;
  font-weight: 600;
  padding: 15px;
  background-color: #D4C7B2;
  color: black;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  width: 60%;
}

.button:hover {
  background-color: #B29F7E;
}

#error_message {
  color: #ff3333;
  text-align: center;
}

.hyperlink {
	text-decoration: underline;
    cursor: pointer;
}

.hyperlink:hover {
    font-weight: 600;
}

.password-container {
    position: relative;
    width: 100%;
}
  
.password-container input {
    width: 100%;
    padding-right: 40px; /* Add space for the icon */
}
  
.toggle-password {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #000;
}

.toggle-password:focus {
    outline: none;
}

#notification_banner {
    position: fixed;              /* Stays relative to the viewport */
    bottom: -100px;               /* Hidden initially */
    left: 0;
    right: 0;
    background: #D4C7B2;
    padding: 10px;
    color: black;
    text-align: center;
    z-index: 1100;
    transition: bottom 0.5s ease;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.25);
    align-self: auto !important;  /* Overrides flexbox centering */
    margin: 0 !important;         /* Prevents unexpected offsets */
    flex-shrink: 0;               /* Prevents resizing by flexbox */
}
#notification_banner.show {
    bottom: 0;
}