.btn-cta {
  cursor: pointer;
}

.em__button-container {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  border-top: 1px solid #868686;
  padding-top: 40px;
}

@media screen and (min-width: 1026px) {
  .em__button-container {
    flex-direction: row;
  }
}

.em__confirm-button {
  text-align: center;
  margin-bottom: 8px;
  cursor: pointer;
}

@media screen and (min-width: 1026px) {
  .em__confirm-button {
    margin-bottom: 0;
    text-align: left;
  }
}

.em__cancel-button {
  border: 1px solid;
  color: #0d123d;
  text-decoration: none;
  cursor: pointer;
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-top: 1rem;
}

@media screen and (min-width: 1026px) {
  .em__cancel-button {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    margin-top: 0;
  }
}

.em__form-field__container {
  min-width: 200px;
  width: 350px;
}

.em__form-field__container input {
  border: 1px solid #ccc;
}

.em__form-field {
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #404040;
}

.em__form-field.em__active input,
.em__form-field input.em__active {
  border: 1px solid #0392cf;
}

.em__form-field.em__invalid input,
.em__form-field input.em__invalid {
  border: 1px solid #ea5e5f;
}

.em__form-field__invalid-icon {
  display: none;
}

.em__form-field.em__invalid .em__form-field__invalid-icon {
  display: flex;
}

@media screen and (min-width: 1026px) {
  .em__form-field {
    width: 350px;
  }
}

.em__form-field__label {
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 32px;
  color: #868686;
  font-size: 1rem;
  margin-left: 0.25rem;
  margin-top: -1.25rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  transition: all linear 0.1s;
}

.em__form-field__input {
  padding: 0.75rem 3.5rem 0.75rem 0.75rem;
  outline: none !important;
}

.em__form-field__input__invalid {
  outline: none !important;
}

.em__form-field__label.em__active {
  position: absolute;
  left: 0;
  top: 8px;
  font-size: 0.875rem;
  background-image: linear-gradient(0deg, #fff 0.675rem, transparent 0);
  /* color: #0392CF; */
}

input:disabled {
  cursor: not-allowed;
  --bg-opacity: 1;
  background-color: #e7e7e7;
  color: rgb(134, 134, 134);
}
