@import '../../Pages/MainLayout/themes.scss';

.form-page {
  background-color: #fafafa;
  @include themify($themes) {
    color: themed('textColor');
    background-color: themed('backgroundMainColor');
  }
}

.category,
.header {
  color: #9e9e9e;
  font-size: 0.75rem;
}

.section-name {
  font-size: 1.25rem;
}

.description,
.section-name {
  font-weight: 700;
}
.description {
  margin-bottom: 1.5rem;
}

.section-title {
  padding: 1rem;
}

.input-group .input-field {
  font-size: 0.75rem;
  display: block;
  width: 100%;
  max-width: 35rem;
  margin-bottom: 1rem;
}

.forn-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  border-color: #e2e8f0;
  border-width: 1px;
  border-radius: 0.25rem;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
}

.form-input {
  @include themify($themes) {
    color: themed('textColor');
    background-color: themed('backgroundColor');
    border: themed('borderBottom');
  }
  &:focus {
    @include themify($themes) {
      background-color: themed('backgroundElements');
      color: themed('textColor');
      background-color: themed('backgroundColor');
    }
    box-shadow: none;
  }
}

.form {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  border-width: 1px;
  border-radius: 0.5rem;
  background-color: #fff;

  @include themify($themes) {
    color: themed('textColor');
    background-color: themed('backgroundColor');
  }
}

.btn.btn-primary {
  border-radius: 0.5rem;
  font-size: 0.75rem;
  padding: 0.5rem 1rem;
  font-weight: 700;
  text-transform: uppercase;
}
