.interviewmate-wl {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.interviewmate-wl__form {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.interviewmate-wl__input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  text-align: center;
}

.interviewmate-wl__button {
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  color: #ffffff;
  background-color: #ff7e06f1;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.interviewmate-wl__button:hover,
.interviewmate-wl__button:focus {
  background-color: #fca311;
}

.interviewmate-wl__button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.interviewmate-wl__message {
  margin: 12px 0 0;
}

.interviewmate-wl__message[data-state='error'] {
  color: #b10000;
}

.interviewmate-wl__message[data-state='success'] {
  color: #1f7a1f;
}
