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

:root {
  --ff-titles : 'Staatliches', cursive;
  --ff-texting : 'Poppins', sans-serif;
  --bg-primary : #E5E5E5;
  --bg-header : #535971;
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  background: var(--bg-primary);
}

body::before {
  content: '';
  background: var(--bg-header);
  width: 100%;
  height: 43.6rem;
  top: 0;
  left: 0;
  position: absolute;
  z-index: -1;
}

.page {
  width: 75rem;
  margin: 14rem auto 10rem;
}

header {
  width: 41.7rem;
  margin-bottom: 6.3rem;
}

header h1 {
  font-family: var(--ff-titles);
  font-weight: 400;
  color: #FFF;
  font-size: 4.8rem;
  line-height: 6rem;
}

header p {
  font-family: var(--ff-texting);
  color: #FFF;
  font-size: 2rem;
  line-height: 3rem;
}

form {
  background: #FFF;
  padding: 6.4rem;
  border-radius: 8px 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

fieldset {
  border: none;
  display: flex;
  flex-direction: column;
}

.fieldset-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.fieldset-wrapper legend {
  font-family: var(--ff-titles);
  color: #535971;
  font-size: 2.4rem;
  line-height: 3.4rem;
  border-bottom: 1px solid #E6E6F0;
  padding-bottom: 1.6rem;
}

.fieldset-wrapper label {
  font-family: var(--ff-texting);
  color: #4E4958;
  font-size: 1.4rem;
  line-height: 2.4rem;
  margin-bottom: 8px;
}

.fieldset-wrapper label span {
  color: #C1BCCC;
  font-size: 1.2rem;
  line-height: 2rem;
  margin-left: 6px;
}

.input-wrapper input {
  font-family: var(--ff-texting);
  color: #332e3d;
  width: 100%;
  border: 1px solid #E6E6F0;
  border-radius: 8px;
  height: 5.6rem;
  padding: 2.4rem;
  font-size: 1.7rem;
  line-height: 2rem;
  margin-top: 8px;
}

.col-2 {
  display: flex;
  gap: 2.2rem;
}

.fieldset-date legend {
  font-size: 2rem;
  line-height: 3.4rem;
  border: none;
}

.fieldset-date #first-mentorship {
  margin-top: 3rem;
}

.col-date {
  display: flex;
  gap: 3.2rem;
}

footer {
  background: #535971;
  display: flex;
  flex-direction: column;
  padding: 5.2rem 7rem;
  border-radius: 0 0 8px 8px;
}

.button {
  font-family: var(--ff-titles);
  background: #FF5374; ;
  color: #FFF;
  font-weight: 400;
  font-size: 2rem;
  line-height: 2.6rem;
  height: 5.6rem;
  border: none;
  border-radius: 20px;
}

.button:hover {
  cursor: pointer;
  background: #f23b5f;
}