/* 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-form-header {
  background-color: #f3f3f3;
  color: #111;
}

.atira-form-left-side img {
  border: 1px solid #7c7c7c;
}

.atira-form-footer {
  background-color: #f6f6f6;
  border-top: 1px solid #ddd;
}

.atira-form-footer img {
  filter: brightness(0);
}

.atira-form-footer p {
  color: #444;
}

.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 {
  outline: 2px solid #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;
}

/* scrollbar styling */
::-webkit-scrollbar-track {
  background: #eeeeee;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #bcbcbc, #8e8e8e);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #d0d0d0, #7a7a7a);
}

* {
  scrollbar-width: thin;
  scrollbar-color: #8e8e8e #eeeeee;
}
