.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;
}
#registration-customer-content,
#registration-user-content,
#registration-user-detail {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 25px;
  background-color: #fdfdfd;
  box-shadow: rgba(0, 0, 0, 0.15) 0 0 5px;
}
.registration-user-line {
  display: flex;
  flex-direction: row;
  gap: 8px;
  position: relative;
}
.registration-user-column {
  display: flex;
  flex-direction: row;
  gap: 4px;
}
.registration-user-label {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  font-size: 15px;
  gap: 5px;
}
.registration-user-input,
.registration-user-password-input {
  padding: 6px;
  text-decoration: none;
  border-style: solid;
  border-color: #eeeeee;
  border-width: 1px;
  border-radius: 4px;
  font-size: 0.9em;
}
.registration-user-input-error {
  border-color: #ff0202;
}
.registration-password-show {
  position: absolute;
  display: inline-block;
  bottom: 14px;
  right: 12px;
  font-size: 1em;
  color: #87a0d3;
  cursor: pointer;
}
@media only screen and (max-width: 515px) {
  .registration-user-line {
    flex-direction: column;
    gap: 20px;
  }
}
