/*==================HERO SECTION STYLES==================*/
.hero h1 {
  margin-left: 1rem;
  font-size: 30px;
}

.hero p {
  margin-left: 1.5rem;
  font-size: 17px;
  text-align: left;
}

@media (min-width: 64rem) {
  .hero h1 {
    font-size: 90px;
  }

  .hero p {
    font-size: 30px;
  }
}

/*==================FORM SECTION STYLES==================*/

.service-request-form {
  margin-left: 2rem;
  margin-right: 2rem;
  border: 3px solid var(--border);
}

fieldset {
  border: 1px solid var(--border);
  margin: 1rem;
}

input,
select,
textarea {
  outline: none;
  background-color: var(--dark-background);
  border: 2px solid var(--border);
  color: var(--primary-text);
  border-radius: 8px;
  height: 2rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.invalid {
  border-color: var(--warning-color);
}

input:focus,
textarea:focus,
select:focus {
  border: 3px solid var(--hover-border);
}

select option {
  color: var(--primary-text);
}

textarea {
  width: 87%;
  height: 8rem;
}

input::placeholder,
textarea::placeholder {
  color: var(--secondary-text);
}

.current-website {
  display: none;
}

.submit {
  border: 3px solid var(--border);
  margin-bottom: 1rem;
  border-radius: 25px;
}

.disabled {
  border: none;
  cursor: not-allowed;
  opacity: 0.2;
}

.reset {
  margin-bottom: 1rem;
  margin-left: 2rem;
  border: 0.5px solid var(--border);
  padding: 0.4rem;
  border-radius: 25px;
}

@media (min-width: 64rem) {
  #service-request-form {
    display: flex;
    flex-direction: column;
  }

  fieldset {
    width: 60%;
    margin-left: 15rem;
  }

  .submit {
    margin-left: 34rem;
    width: 30%;
  }

  .reset {
    margin-left: 36rem;
    width: 20%;
  }

  button:hover {
    background-color: var(--hover-background);
    border-color: var(--hover-border);
  }
}
