/* Theme 2. THEME.WHITE */

.atira-theme-form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  padding: 1rem;
  border-radius: 1rem;
  background-color: #fefefe;
}

.atira-theme-input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.atira-theme-input {
  background-color: #edecec;
  border: 0;
  padding: 0 0.5rem;
  outline: none;
  transition: box-shadow 0.2s;
  box-shadow: 0 0 0 2px transparent;
  border-radius: 0.4rem;
}

.atira-theme-input:not(textarea) {
  height: 2.7rem !important;
}

.atira-theme-input::placeholder {
  font-weight: 570;
}

.atira-theme-input:focus {
  box-shadow: 0 0 0 2.5px #000000cc;
}

.atira-theme-label {
  font-weight: 580;
  font-size: 1rem;
}

.atira-theme-send-button {
  background-color: #000;
  color: #fff;
  border-radius: 0.4rem;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.atira-theme-send-button:hover {
  background-color: #000000b3;
}
