html {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;

  background-image: url("background.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Remove Arrows/Spinners */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

h1 {
  color: #1a3636;
}

.box {
  display: flex;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.5);
  min-width: 18rem;
  padding: 24px 32px;
  gap: 28px;
  border-radius: 18px;
  box-shadow: 2px 4px 15px 1px rgba(0, 0, 0, 0.35);
  margin: 0 24px;
}

h1 {
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.6);
  color: #fff;
  margin: 0;
  text-align: center;
  font-size: 2.5rem;
}

h2 {
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.6);
  color: #fff;
  margin: 0;
  text-align: center;
  font-size: 2rem;
}

h3 {
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.6);
  color: #fff;
  margin: 0;
  text-align: center;
  font-size: 1rem;
  margin-top: 8px;
  font-weight: 400;
}

button {
  display: block;
  width: 100%;
  padding: 18px 0;
  border-radius: 24px;
  border: 0px;
  background-color: #00a651;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

input,
select {
  display: block;
  height: 32px;
  border: 0px;
  padding: 0 12px;
  margin: 0;
  width: 100%;
  font-size: 1.2rem;
}

.text-boxes {
  display: flex;
  gap: 1.2rem;
  flex-direction: column;
}

.field {
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: #fff;
  padding: 8px 18px;
  border-radius: 20px;
}

body {
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;
  min-height: 100dvh;
  margin: 0;
  padding: 0;
  place-content: space-between;
}

.location-link {
  text-decoration: none;
  color: #fff;
  background-color: #00a651;
  font-weight: 600;
  padding: 12px 18px;
  max-width: fit-content;
  border-radius: 12px;
  display: flex;
  margin: 0 auto;
  align-items: center;
  gap: 8px;
}

.location-link svg {
  height: 24px;
  width: 24px;
  display: inline-block;
  color: #ff3131;
  background-color: #fff;
  border-radius: 50%;
}

.thank-you-text {
  font-size: 1.2rem;
  color: #fff;
  display: block;
  text-align: center;
}

.number-confirmed-text {
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  display: block;
  text-align: center;
}

.confirmed-icon svg {
  height: 64px;
  width: 64px;
  color: #fff;
  background-color: #45a834;
  padding: 12px;
  border-radius: 50%;
}

.header p {
  color: #fff;
  text-align: center;
  text-shadow: 1.5px 1.5px 0px rgba(0, 0, 0, 0.4);
  font-size: 1.3rem;
  font-weight: 600;
}

.header h1 {
  margin-top: 18px;
}

.logo {
  height: 75px;
}

.sublogo {
  height: 50px;
  margin-bottom: 24px;
}

.footer {
  position: relative;
  margin-top: 20px;
  margin-bottom: 24px;
}

.footer img {
  width: 100%;
  max-height: 40px;
}

.footer a {
  position: absolute;
  color: white;
  display: block;
  top: 1.6vh;
  right: 2vw;
  font-weight: 600;
}

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  margin-top: 32px;
}

.otp-container {
  display: flex;
  justify-content: center;
}

.otp-input {
  width: 50px;
  height: 50px;
  text-align: center;
  font-size: 24px;
  margin: 0 5px;
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 12px;
  font-size: 2.4rem;
  font-weight: 600;
}

.otp-input:focus {
  outline: none;
  border-color: #007bff;
}

svg {
  height: 32px;
  width: 32px;
  display: block;
  margin: 0 auto;
}

.btn-submit {
  margin: 24px auto 0px auto;
  display: block;
  width: fit-content;
  padding: 12px 38px;
  font-size: 1.4rem;
}

.link-resend-otp {
  color: #fff;
  font-weight: 600;
  display: block;
  margin-top: 18px;
  text-decoration: underline;
}

.info-small {
  color: #fff;
  display: block;
  margin: 8px 0 0 28px;
  font-size: 0.9rem;
}

.error {
  padding: 12px;
  display: flex;

  background-color: #fff;
  color: #ff3131;
  font-weight: 600;
  border-radius: 13px;
  align-items: center;
  justify-content: center;
  border: 2px solid #ff3131;
  gap: 12px;
}

.error svg {
  height: 24px;
  display: inline-block;
  margin: 0;
}

.required {
  font-size: 1.5rem;
  color: #ff3131;
  font-weight: 600;
  display: inline-block;
}

label {
  display: flex;
}

.links {
  display: flex;
  place-content: space-between;
}
