/* ----- Styling for the Form for Mobile and Tablet ------ */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primaryColor: black;
  --headerFont: "Playfair Display", serif;
  --primaryFont: "Poppins", sans-serif;
}

.form__section {
  width: 90%;
  margin: auto;
}

.form__wrapper {
  padding: 16px;
  background-color: white;
  border-radius: 4px;
}

.form__header p {
  font-family: var(--primaryFont);
  font-size: 1em;
  font-weight: 500;
}

label {
  font-family: var(--primaryFont);
  font-size: 1em;
  margin-bottom: 8px;
}

select,
input {
  width: 100%;
  padding: 10px;
  font-size: 1em;
  border: 1px solid black;
  border-radius: 4px;
  margin-bottom: 15px;
  font-family: var(--primaryFont);
  background-color: transparent;
}

.submit-btn {
  width: 100%;
  padding: 20px 0px;
  background-color: var(--primaryColor);
  color: white;
  border: none;
  border-radius: 4px;
  font-family: var(--primaryFont);
  font-size: 1.2em;
  margin-bottom: 20px;
}

input:focus {
  outline: none;
}

option {
  font-family: var(--primaryFont);
}

.home-btn {
  font-family: var(--primaryFont);
  font-size: 1.2em;
  color: var(--primaryColor);
  cursor: pointer;
}
