.thanks_page_container {
  background: #ffffff;
  border: 2px dashed #dadada;
  box-sizing: border-box;
  border-radius: 5px;
  width: 570px;
  margin: auto;
  margin-bottom: 60px;
  padding: 72px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.thanks_tilte {
  margin-top: 40px;
  color: #374957;
  font-weight: 800;
  font-size: 36px;
  line-height: 36px;
  text-align: center;
}

.thanks_description {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  color: rgba(55, 73, 87, 0.7);
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}

.thanks_bold_desc {
  color: #374957;
  font-weight: 600;
}

.thanks_button {
  margin-top: 40px;
  background: rgba(68, 176, 94, 0.15);
  border-radius: 5px;
  border: none;
  padding: 5px 19px;
  font-weight: 600;
  font-size: 14px;
  line-height: 36px;
  color: #44b05e;
}

@media screen and (max-width: 599px) {
  .thanks_page_container {
    width: calc(100% - 30px);
    border: 0;
    background-color: transparent;
    padding-left: 15px;
    padding-right: 15px;
  }

  .thanks_tilte {
    font-size: 20px;
    margin-top: 30px;
  }

  .thanks_description {
    font-size: 16px;
  }

  .thanks_bold_desc {
    font-weight: 500;
  }

  .thanks_button {
    margin-top: 10px;
  }
}
