.index-page__application-section {
  width: 100%;
  /* flex-grow: 10; */
  flex: 1;
}

.index-page__application-section__container {
  padding-top: 60px;
  padding-bottom: 60px;
}

.index-page__application-form {
  width: 100%;
  /* box-shadow: 5px 5px 20px 0 rgba(0,0,0,0.4); */
  box-shadow: 0px 0px 20px 0px rgb(0, 168, 166, 0.51);
  border-radius: 5px;
  padding: 40px 20px;
  margin-bottom: 30px;
  scroll-margin-top: 50px;
}

.index-page__application-section-title {
  text-align: center;
  color: rgb(0, 168, 166, 1);
  margin-bottom: 40px;
}

.index-page__application-items-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
}

.index-page__application-item-lebel {
  margin-bottom: 10px;
  color: rgb(0, 168, 166, 1);
}

.index-page__application-item-input, .index-page__application-item-textarea {
  width: 100%;
  border-radius: 5px;
  background-color: rgba(0, 168, 166, 0.5);
  padding: 5px 10px;
  color: #fff;
  border: 2px solid rgba(0, 168, 166, 1);
  outline: none;
  font-size: 16px;
}

.index-page__application-item-textarea {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  min-height: 100px;
}

.index-page__application-submit {
  width: 100%;
  border: 0px;
  outline: none;
  padding: 15px 20px;
  color: #fff;
  background-color: rgba(0, 168, 166, 1);
  border-radius: 5px;
  cursor: pointer;
  margin-top: 20px;
  transition: opacity 0.1 ease;
  font-weight: bold;
}

.index-page__application-submit:hover {
  opacity: 0.8;
}

.index-page__application-submittion-success-result {
  /* color: #4CAF50; */
  color: green;
  text-align: center;
}
.index-page__application-submittion-error-result {
  /* color: #F44336; */
  color: red;
  text-align: center;
}

@media screen and (max-width: 800px) {
  .index-page__application-section-title {
    margin-bottom: 30px;
    font-size: 20px;
  }
}