body {
  background-color: #ababab;
  font-family: 'Roboto', sans-serif;
}

.pageContent {
  padding-left: calc(100vw - 100%);
}

textarea {
  font-family: 'Roboto', sans-serif;
  resize: vertical;
  padding: 10px;
  width: 94%;
}

h2 {
  font-weight: 500;
}

.registrationForm {
  max-width: 600px;
  background-color: white;
  margin: auto;
  border: 0 solid #343434;
  box-shadow: 3px 3px 8px #666;
  border-radius: 2px;
  padding: 40px;
  margin-top: 2%;
}

input[type='radio'] {
  margin: 0 3px 0 5px;
}

.horizontalDivider {
  margin-top: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid grey;
}

p.enterDetails {
  font-weight: 400;
  margin-bottom: 30px;
}

span.mandatory {
  color: red;
}

.nobr {
  white-space: nowrap;
}

.hidden {
  display: none;
}

.small {
  font-size: 10px;
  font-weight: normal;
}

div.inputField,
div.selectField,
div.warning {
  margin-bottom: 24px;
}

div.warning {
  color: #cc0000;
  border: 1px solid #cc0000;
  padding: 5px;
}

div.inputField > label,
div.selectField > label,
.label {
  display: block;
  font-weight: 500;
  margin-bottom: 10px;
}

div.inputField > input[type='text'],
div.inputField > input[type='email'] {
  padding: 8px;
  width: 95%;
}

div.selectField > select {
  width: 98%;
  height: 35px;
  border-radius: 2px;
  padding: 8px 37px 8px 8px;
  -webkit-appearance: none;
}

select.customSelect {
  background-image: linear-gradient(45deg, transparent 50%, gray 50%),
    linear-gradient(135deg, gray 50%, transparent 50%), linear-gradient(to right, #ccc, #ccc);
  background-position: calc(100% - 18px) calc(1em + 2px), calc(100% - 13px) calc(1em + 2px),
    calc(100% - 2.7em) 0.5em;
  background-size: 5px 5px, 5px 5px, 1px 1.6em;
  background-repeat: no-repeat;
}

input[type='checkbox'] {
  transform: scale(1.2);
}

.customTable {
  border-collapse: collapse;
  margin: 25px 0 40px 0;
  font-size: 14px;
  width: 50%;
}

.tooltiptext {
  font-weight: 500;
  font-size: 16px;
}

.customTable tbody tr {
  border-bottom: 1px solid #dddddd;
}

.customTable > tbody > tr > td:nth-child(n + 2) {
  text-align: center;
}

.customTable > tbody > tr > td:nth-child(1) {
  font-size: 16px;
  font-weight: 500;
}

.customTable th,
.customTable td {
  padding: 6px 0;
}

.infoIcon {
  padding-left: 10px;
  font-size: 14px;
  color: slategray;
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: max-content;
  max-width: 500px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 10px;
  position: absolute;
  z-index: 1;
  top: -5px;
  left: calc(100% + 10px);
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

#requestType div {
  margin-bottom: 7px;
}

#dataActions {
  margin-bottom: 35px;
}

.dataAction {
  margin: 10px 0;
}

#requestOnBehalfQuestion, #additionalAccountQuestion {
  margin-bottom: 24px;
}

.flexContainer {
  display: flex;
  flex-wrap: wrap;
}

.flexContainer > * {
  flex: 1 1 300px;
}

.submitBtn {
  border: none;
  font-size: 16px;
  background-color: darkblue;
  color: white;
  padding: 10px 15px;
  border-radius: 4px;
  opacity: 0.9;
  height: 40px;
}

.submitBtn:hover:enabled {
  opacity: 0.7;
}

.submitBtn:active:enabled {
  opacity: 1;
}

.submitBtn:disabled {
  background-color: grey;
}

.submitBtn:hover:disabled {
  cursor: not-allowed;
}

.warningMessage {
  margin-top: 5px;
  font-size: 14px;
  color: #ad2424;
}

.submitErrors {
  margin-left: 20px;
  color: #ad2424;
}

.loader {
  border: 6px solid #f3f3f3;
  border-radius: 50%;
  border-top: 6px solid #3498db;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.footer {
  display: flex;
  align-items: center;
}

#statusMessage {
  line-height: 1.4;
}
