.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) 0 0 5px;
}
.shadow-6 {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px 2px, rgba(0, 0, 0, 0.3) 10px 10px 3px 2px;
}
.shadow-7 {
  box-shadow: 0 0 5px #00000025;
}
.text-shadow-1 {
  text-shadow: 2px 2px 2px #484848bf;
}
#login-form {
  position: relative;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: #fdfdfd;
}
.login-message-section {
  padding: 20px 50px;
  border-bottom-style: solid;
  border-width: 1px;
  border-color: grey;
}
#login-message {
  padding: 5px 50px;
  color: #202020;
  font-size: 1.4em;
  font-weight: bold;
  text-align: center;
}
.login-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1px;
  background-color: #4267b2;
}
.login-section {
  flex-grow: 1;
  background-color: #fdfdfd;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  padding: 20px 50px;
}
.login-section-title {
  font-size: 1.4em;
  text-align: left;
  color: #202020;
}
.login-input-section {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.login-input-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.login-input-row {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.login-input-error {
  display: block;
  color: #ff0202;
  font-size: 0.9em;
  font-style: italic;
  text-align: right;
}
.login-button-block {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: center;
}
.login-button-vertical-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
/*
 * LOGIN ANONYMOUS SECTION
 */
#login-anonymous {
  width: 100%;
  padding: 30px 0 0 0;
  margin: auto;
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: #4267b2;
  text-align: center;
  box-sizing: border-box;
}
#login-anonymous-button {
  background: #4267b2;
  padding: 12px 20px;
  border-radius: 5px;
  color: #fff;
  display: inline-block;
  cursor: pointer;
}
#register-agree-block {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
#register-agree-input {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
}
#register-agree-link {
  color: #87a0d3;
  font-size: 0.8em;
}
