/*!******************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/styles.css ***!
  \******************************************************************/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: sans-serif;
}
.btn {
  background-color: #62806a;
  color: #f2f1ef;
  padding: 1.6rem 2.4rem;
  border-radius: none;
  border: none;
  font-family: GeneralSans-Semibold;
}
.btn-submit {
  width: 30vw;
  letter-spacing: 0.1rem;
  align-self: center;
  transition: all 300ms;
}
.btn:hover {
  background-color: #455a4a;
  cursor: pointer;
}
.form-card {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  justify-items: center;
  gap: 2.4rem;
  margin: 10%;
}
.img-form {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}
.form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.form label {
  font-weight: 600;
  margin-top: 0.8rem;
  font-size: 1.6rem;
}
.form select,
.form input,
.form textarea {
  font-family: GeneralSans-Medium, sans-serif;

  color: #191714;
  height: 3.2rem;

  background-color: #f2f1ef;
  border: 1px solid #a59d91;
  font-size: 1.526rem;
  line-height: 1;
  padding: 0.4rem;
}
.side-text {
  color: #4c453b;
  font-size: 1.28rem;
}

.form textarea {
  /* width: 100%; */
  min-height: 9.6rem;
  margin-bottom: 1.6rem;
}

.form input:focus,
.form textarea:focus {
  outline: none;
  background-color: #f2f1ef;
  border: 2px solid #7f7362;
}

.privacy-policy-note {
  color: #4c453b;
  font-size: 1.024rem;
  margin-bottom: 2.4rem;
  /* width: 60ch; */
}
.privacy-policy-note a:link,
.privacy-policy-note a:visited {
  color: #4c453b;
}

