.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;
}
.registration-customer-section {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
}
.registration-customer-input-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-grow: 1;
}
.registration-customer-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  padding: 10px;
  background-color: #fdfdfd;
  box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
  color: #2b6295;
  border-radius: 4pt;
}
.registration-customer-content-title {
  font-size: 1.2em;
}
.registration-user-line {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
}
.registration-user-column {
  display: flex;
  flex-direction: row;
  gap: 4px;
}
.registration-user-input,
.registration-user-password-input {
  padding: 6px;
  text-decoration: none;
  border-style: solid;
  border-color: #eeeeee;
  border-width: 1px;
  border-radius: 4px;
}
.registration-user-input-error {
  border-color: #ff0202;
}
.registration-password-show {
  position: absolute;
  display: inline-block;
  bottom: 14px;
  right: 12px;
  font-size: 1em;
  color: #6089af;
  cursor: pointer;
}
.registration-missing-info {
  color: #95b0ca;
}
.registration-customer-other-address-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.registration-customer-other-address-add {
  font-size: 0.9em;
  cursor: pointer;
}
.registration-customer-other-address-block {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #cad7e4;
  border-radius: 4pt;
}
.registration-customer-other-address-name-block {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}
.registration-customer-other-address-remove {
  font-size: 0.9em;
  cursor: pointer;
}
.registration-customer-other-address-name-ro {
  font-weight: bold;
}
.registration-customer-other-address-address {
  width: 400px;
}
