body {
  background-color: #fcfdff;
  font-family: "Hind", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

/* Icon classes */

.icon-right-arrow {
  background-color: currentColor;
  -webkit-mask: url("../images/right-arrow.svg") no-repeat center;
  mask: url("../images/right-arrow.svg") no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
  display: inline-block;
  height: 14px;
  width: 16px;
  flex-shrink: 0;
}

.info-icon {
  background-color: currentColor;
  -webkit-mask: url("../images/info.svg") no-repeat center;
  mask: url("../images/info.svg") no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
  display: inline-block;
  height: 19px;
  width: 19px;
  flex-shrink: 0;
}

.green-check-icon {
  background-color: #79d981;
  -webkit-mask: url("../images/green-check.svg") no-repeat center;
  mask: url("../images/green-check.svg") no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
  display: inline-block;
  height: 19px;
  width: 19px;
  flex-shrink: 0;
}

.spinner {
  background-color: currentColor;
  -webkit-mask: url("../images/spinner.svg") no-repeat center;
  mask: url("../images/spinner.svg") no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
  display: inline-block;
  height: 24px;
  width: 24px;
  flex-shrink: 0;
}

button.processing {
  pointer-events: none;
  opacity: 0.9;
}

/* Utility Classes */

.mt-4-5 {
  margin-top: 2.25rem !important;
}

.font-sm {
  font-size: 0.9rem;
}

/* BS overrides */

h3 {
  font-size: 24px;
  font-weight: bold;
}

.navbar {
  box-shadow: 0px 4px 8px 0px #17204e14;
  background-color: #fff;
  padding: 12px 24px;
}

label {
  font-weight: 600;
}

.form-control {
  border-radius: 0.25rem;
}

.btn {
  padding: 0.6rem 0.75rem;
  border-radius: 0.25rem;
  text-transform: uppercase;
}

.btn-primary {
  background-color: #9e0059;
  border: 1px solid #9e0059;
}

.btn-primary:hover,
.btn-primary:active {
  background-color: #730242 !important;
  border: 1px solid #730242 !important;
}

.btn-outline-secondary {
  color: #273043;
  border-color: #273043;
  font-weight: 500;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:active {
  background-color: #273043 !important;
  color: #fff !important;
}

.alert-primary {
  background-color: #f2f9ff;
  border-color: #79acd9;
  color: #343333;
}

.auth-card {
  box-shadow: 0px 8px 16px rgba(23, 32, 78, 0.08);
  background-color: #fff;
  border-radius: 24px;
  border: 1px solid #ebedf0;
  border-width: 1px;
  padding: 48px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 450px;
  width: 100%;
}

/* Footer */
#footer {
  background-color: #273043;
  padding: 48px;
}

.footer-link {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.footer-link:hover {
  color: #fff;
}

/* Locale dropdown */

#language-dropdown {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-color: white;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 10px 40px 10px 15px;
  font-size: 16px;
  color: #333;
  cursor: pointer;
  background-image: url("../images/chevron-down.svg");
  background-repeat: no-repeat;
  background-position: right 8px bottom 14px;
  background-size: 20px;
}
