.option-container {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 350px;
}

@media only screen and (max-width: 767px ) {
  .option-container {
    width: 96%;
    margin: 0 auto;
  }
}

.form-body {
  display: flex;
  width: 90%;
  margin-bottom: 20px !important;
  justify-content: space-between;
}


.select-text {
  width: 388px;
  height: 19px;
  margin-left: 22px;
  display: inline-block;
  font-size: 16px;
  font-weight: 300;
  color: #041333;
}

.option {
  width: 200px;
  height: 77px;
  border-radius: 6px;
  border: solid 1px #f0f1f1;
  display: flex;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

@media only screen and (max-width: 280px ) {
  .auth-options > span {
    font-size: 22px;
  }
}

@media only screen and (max-width: 375px ) {

  .description {
    width: 90%;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 768px ) {
  .form-body {
    flex-direction: column;
  }

  .option {
    width: 100%;
    margin-bottom: 20px;
  }
}

.check-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  position: absolute;
  right: -8px;
  top: -6px;
}

.selected {
  display: none;
}

.active .selected {
  display: block;
}

.active {
  border: solid 1px #00884b;
  color: #00884b;
}

.option:hover {
  cursor: pointer;
}

.type {
  font-size: 16px;
  font-weight: bold;
}

.description {
  font-size: 12px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #041333;
}

.active span {
  color: #00884b;
}

.form-header, .form-body, .form-footer {
  width: 90%;
  margin: 0 auto;
}

.form-footer {
  display: flex;
  height: 26%;
  justify-content: center;
  align-items: center;
}