body {
  display: grid;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  background: url("/assets/bg.jpg");
  font-family: "Montserrat", sans-serif;
  background-size: cover;
  background-position: center;
  padding: 0px 8px 12px 0px;
}

#forms {
  display: flex;
  flex-direction: column;
  width: 20rem;
  margin: auto;
}
#forms input[type="file"] {
  display: none;
}

#forms button {
  margin: auto;
  align-self: flex-start;
  border: 2px solid rgb(0, 0, 0);
  background-color: transparent;
  color: black;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 30px;
  display: inline-block;
  padding: 10px 40px;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}

#forms button:hover {
  background-color: #000000;
  color: white;
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgb(0, 0, 0);
}

.title {
  text-align: center;
  color: rgb(0, 0, 0);
  margin-bottom: 8rem;
}
.title h1 {
  font-weight: 800;
  font-size: 3.5rem;
  line-height: 6rem;
  transition: font-size 0.4s ease;
}
.title p {
  font-size: 1.5rem;
  line-height: 1.8rem;
  transition: font-size 0.4s ease;
}

@media (max-width: 640px) {
  .title {
    margin-bottom: 2px;
  }
  .title h1 {
    font-weight: 800;
    font-size: 2rem;
    line-height: 1.6rem;
  }
  .title p {
    font-size: 1rem;
    line-height: 1rem;
  }
}
@media (min-width: 641px) and (max-width: 768px) {
  .title {
    margin-bottom: 2px;
  }
  .title h1 {
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 2rem;
  }
  .title p {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
}

.labels {
  font-weight: 600;
}

.upload-box {
  border: 3px dashed rgb(0, 0, 0);
  background-color: transparent;
  color: black;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 40px;
  cursor: pointer;
  transition: all 300ms ease-in-out;
  text-align: center;
}

.upload-box:hover {
  border: 3px solid rgb(255, 255, 255);
  background-color: #000000;
  color: white;
  transform: scale(1.05);
}

.upload-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  filter: invert(0);
  transition: filter 300ms ease-in-out;
}

.upload-box:hover .upload-icon {
  filter: invert(1);
}

.hint {
  margin-top: 8px;
  font-size: 0.8rem;
  color: #444;
  text-align: center;
}

.inputs {
  background-color: #ffffff79;
  border: 2px solid rgb(0, 0, 0);
  padding: 10px 10px 10px 10px;
  border-radius: 8px;
  color: rgb(0, 0, 0);
  margin-bottom: 20px;
}
.inputs-err,
.inputs-err:focus {
  border: 2px solid rgb(255, 0, 0);
}
#error-message {
  color: red;
  line-height: 0rem;
  font-size: 0.65rem;
  display: none;
}

.inputs::placeholder {
  color: rgba(0, 0, 0, 0.699);
  font-weight: 500;
}
