/* Claim form only */



.ie-form {
  max-width: 400px;
  width: 100%;
  display: grid;
  gap: 12px;
  margin-left: auto;
  margin-right: auto;
}

.ie-field {
  display: grid;
  gap: 4px;
}

.ie-field__label {
  font-size: 14px;
}

.ie-input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fff;
  font: inherit;
  width: 100%;
  box-sizing: border-box;
}

.ie-input:focus {
  outline: none;
  border-color: #0CC0DF;
  box-shadow: 0 0 0 1px rgba(12, 192, 223, 0.3);
}

.ie-btn {
  padding: 10px 14px;
  border-radius: 999px;
  border: 0;
  font-weight: 600;
  cursor: pointer;
  font: inherit;
}

.ie-btn--primary {
  background: #111;
  color: #fff;
}

.ie-btn--primary:hover {
  background: #0CC0DF;
  color: #000;
}


