form{
   padding: 0 20px;
   font-size: 10px;
   font-family: 'WF-Regular-Text', Arial, Helvetica, sans-serif;
}

form .input-box {
    display: flex;
    justify-content: space-between;
}

.input-box .input-field {
    width: 100%;
}

.field .item {
    width: 100%;
    padding: 14px 15px;
    background: transparent;
    border: 1px solid #696E75;
    outline: none;
    border-radius: 4px;
    color: white;
    margin: 0 0 5px;
    font-size: 12px;
    font-family: 'WF-Regular-Text', Arial, Helvetica, sans-serif;
}

.field.error .item {
    border-color: #d93025;
}

.field .item::placeholder {
    color: rgba(255, 255, 255, 1);
}

.field .error-txt {
    font-size: 12px;
    color: #d93025;
    text-align: left;
    margin: 0px 0 10px;
    display: none;
}

.field.error .error-txt {
    display: block;
}

form .textarea-field .item {
    resize: none;
}

form .textarea-field .error-txt {
    margin-top: -10px;
}

form button {
    padding: 18px 32px;
    background: #ffffff;
    border: none;
    outline: none;
    border-radius: 4px;
    font-size: 14px;
    color: #3F444B;
    width:100%;
    cursor: pointer;
    margin-bottom: 20px;
    transition: .5s;
    font-family: 'WF-Semi-Bold', Arial, Helvetica, sans-serif;
}

form button:hover {
    box-shadow: none;
    color:#ffffff;
    background: #6498eb;
}


:root {
  --arrow-bg: rgba(255, 255, 255, 0.3);
  --arrow-icon: url(https://upload.wikimedia.org/wikipedia/commons/9/9d/Caret_down_font_awesome_whitevariation.svg);
  --option-bg: #3F444B;
  --select-bg: #3F444B;
}

select {
  /* Reset */
  appearance: none;
  border: 0;
  outline: 0;
  font: inherit;
  /* Personalize */
  width: 100%;
  padding: 14px 15px;
  margin: 0 0 6px;
  background: var(--arrow-icon) no-repeat right 0.8em center / 1.4em, linear-gradient(to left, rgb(63 68 76) 3em, var(--select-bg) 3em);
  color: white;
  border-radius: 0.25em;
  border: solid 1px #696E75;
  cursor: pointer;
  font-size: 12px;
  font-family: 'WF-Regular-Text', Arial, Helvetica, sans-serif;
  /* Remove IE arrow */
  &::-ms-expand {
    display: none;
  }
  /* Remove focus outline */
  &:focus {
    outline: none;
  }
  /* <option> colors */
  option {
    color: inherit;
    background-color: var(--option-bg);
  }
}

div:where(.swal2-container) .swal2-html-container {
   font-family: 'WF-Regular-Text', Arial, Helvetica, sans-serif;
}

.swal2-confirm.swal2-styled{
    background-color: #3F444B;
    font-family: 'WF-Semi-Bold', Arial, Helvetica, sans-serif;
}

.swal2-actions{
   margin: 10px auto 0;
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm:hover{
   color:#ffffff;
   background: #6498eb;
   transition: .5s;
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm:focus {
    box-shadow: none !important;
}