.shadow-1 {
  box-shadow: 2px 2px 2px #0a3a65;
}
.shadow-2 {
  box-shadow: 4px 4px 16px #434d56;
}
.shadow-3 {
  box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0);
}
.shadow-4 {
  box-shadow: 0 24px 28px -12px black;
}
.shadow-5 {
  box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
}
.shadow-6 {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px 2px, rgba(0, 0, 0, 0.3) 10px 10px 3px 2px;
}
.text-shadow-1 {
  text-shadow: 2px 2px 2px #484848bf;
}
#login-form {
  position: relative;
  background-color: #fdfdfd;
}
#login-message-section {
  display: flex;
  flex-direction: column;
  padding: 20px 50px;
  border-bottom-style: solid;
  border-width: 1px;
  border-color: grey;
}
#login-message {
  padding: 5px 50px;
  color: #2b6295;
  font-size: 1.4em;
  font-weight: bold;
  text-align: center;
}
#login-content,
#lost-password-content {
  display: flex;
  flex-direction: row;
  gap: 0;
  justify-content: center;
  height: inherit;
  padding: 50px;
  box-sizing: border-box;
}
#login-section,
#register-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex-grow: 1;
  flex-basis: 400px;
  text-align: center;
  vertical-align: top;
  box-sizing: border-box;
}
.login-section-title,
.register-section-title {
  font-size: 1.4em;
  text-align: left;
  color: #2b6295;
}
#login-input-section,
#register-input-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#login-input-block,
#register-input-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.login-input-row,
.register-input-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.login-input-error {
  color: #ff0202;
  font-size: 0.9em;
  font-style: italic;
  text-align: right;
}
#login-button-block,
#register-button-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#login-forgotten-button {
  cursor: pointer;
}
#register-newsletter-block,
#register-agree-block {
  padding: 2px 0;
}
#register-newsletter-input,
#register-agree-input {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
#register-newsletter-label,
#register-agree-link {
  font-size: 0.8em;
  text-align: left;
  color: #2b6295;
}
#register-agree-link {
  cursor: pointer;
}
#login-separator {
  flex-grow: 1;
  flex-basis: 100px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
#login-separator-line {
  width: 1px;
  height: 80%;
  background-color: #2b6295;
}
#lost-password-section,
#recover-password-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#lost-password-input-section {
  position: relative;
}
#lost-password-input-block {
  position: relative;
}
#lost-password-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#lost-password-button-block,
#recover-password-button-block {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: center;
}
@media only screen and (max-width: 640px) {
  #login-content {
    flex-direction: column;
    gap: 0;
  }
  #login-section,
  #register-section {
    flex-grow: 0;
    flex-basis: 0;
  }
  #login-separator-line {
    width: 80%;
    height: 1px;
  }
}
