body {
  background-color: #E0F1E7;
  font-family: 'Roboto', sans-serif;
}

h1 {
  font-weight: 500;
}

label, p {
 color: #8B9194;
}

.custom-text {
  color: #8B9194;
  font-weight: 400;
  margin-left: 0.60rem;
  font-size: 14px;
}

.flex-class {
  display: flex;
  align-items: center;
}

.flex-col {
  display: flex;
  flex-direction: column;
} 

.custom-border {
  border: 1px solid #909B97;

  border-radius: 5px;
  padding-left: 0.40rem;
}

.container {
   display: flex;
   justify-content: center;
   align-items: center;
   box-sizing: border-box;
   width: 100vw;
   height: 100vh;
}

.form-group {
  background-color: white;
  padding: 1rem;
  border-radius: 0.5rem;
  width: 40%;
  min-height: 60%;
}

.form-subgroup {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0.65rem;
  padding: 0.45rem 0;
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  padding: 0.45rem 0;
}

input, textarea {
  outline: none;
  cursor: pointer;
  padding: 0.75rem 0;
  border-radius: 5px;
  border: 1px solid #909B97;
}

button {
  width: 100%;
  background-color: #0D7D69;
  outline: none;
  border: none;
  border-radius: 5px;
  height: 3rem;
  color: #C4EFEB;
}

span {
  color: #73998C;
}

label {
  padding: 0.45rem 0;
  font-size: 14px;
}

p {
  font-size: small;
}

/* select only input checkbox */
/* input[type="checkbox"] {
  padding-bottom: 5px;
} */

textarea {
  height: 4rem;
}

/* write a media query for mobile */
@media screen and (max-width: 768px) {
  .form-group {
    width: 90%;
  }

  .form-subgroup {
    grid-template-columns: 1fr;
  }
  textarea {
    height: 10rem;
  }
}

