:host {
  display: block;
}

* {
  box-sizing: border-box;
}

.login-card-page-three {
  border-radius: 8px;
  background-color: var(--card-background-color);
}

form {
  border: 1px solid #d3d3d3;
  margin-top: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 8px;
}

form p {
  font-size: 0.85rem;
  color: var(--text-secondary-color);
}

.input-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.input-container input {
  background-color: white;
  padding: 16px;
  width: 48px;
  aspect-ratio: 1/1;
  border: none;
  border-radius: 8px;
}

form .small-text {
  font-size: 1rem;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
}

#submit-button {
  background-color: #001E57;
  width: 100%;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
}

#resend-button {
  width: max-content;
  margin: 0 auto;
  color: #001E57;
  font-size: 0.75rem;
}

p {
  margin: 0;
}

.security-box {
  color: #001E57;
  background-color: #eff6ff;
  font-size: 0.75rem;
  display: flex;
  gap: 8px;
}

.security-box svg {
  width: 16px;
  aspect-ratio: auto;
}
