@use "../../assets/scss/customVariables.scss" as *;

.container {
  width: 100%;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 51px;

  .pageTitle {
    font-weight: 700;
    font-size: 45px;
    color: #000000;
  }

  .divider {
    width: 100%;
    height: 5px;
    background: $primary-color;
    margin: 20px 0;
    margin-bottom: 40px;
  }

  .maxContainer {
      width: 100%;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: space-between;
      margin: 0 auto;
      max-width: $max-width-layout;


      @media screen and (max-width: 900px) {
        flex-direction: column;
      }

      .formContainer {
        width: 100%;
        gap: 25px;
        display: flex;
        align-items: center;
        flex-direction: row;
        box-sizing: border-box;
        flex-wrap: wrap;
        justify-content: space-between;
      }
    }
}

.divisor {
  width: 100%;
  height: 1px;
  background: #DDDDDD;
  margin: 20px 0;
}

.note{ 
  width: 100%;
  font-weight: 600;
  color: #5E5E5E;
}