main {
  margin: 0 auto;
  padding: 35px 100px;
  background-color: #fff;
  box-shadow: 0px 2px 12px 3px #0000001a;
  border: 2px solid #c8cbd0;
  border-radius: 12px;
  text-align: center;
  margin-top: 80px;
  margin-bottom: 160px;
  width: fit-content;
  .title {
    font-family: 'Open sans', sans-serif;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 36px;
  }
  form {
    width: 300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
    margin-top: 43px;
    gap: 15px;
    input {
      font-family: 'Open sans', sans-serif;
      font-weight: 600;
      border: none;
      font-size: 16px;
      padding: 15px 15px 15px 20px;
      border-radius: 13px;
      background-color: #fff;
      box-shadow: 0px 2px 12px 3px #0000001a;
      border: 2px solid #c8cbd0;
      &:focus{
        outline: none;
      }
      /* color: var(--text-color); */
      &::placeholder{
        /* color: var(--text-color); */
      }
      &:-webkit-autofill {
        /* -webkit-box-shadow: 0 0 0 1000px var(--primary-color) inset !important;
        -webkit-text-fill-color: var(--text-color) !important; */
      }
    }
    button {
      width: 100%;
      font-family: 'montserrat', sans-serif;
      font-size: 18px;
      font-weight: 600;
      padding: 15px 0;
      /* width: fit-content; */
      margin: 0 auto;
      margin-top: 19px;
      border: none;
      background-color: var(--primary-color);
      border-radius: 13px;
      cursor: pointer;
      color: var(--text-color);
    }
    
  }
  a {
    font-family: 'montserrat', sans-serif;
    font-weight: 400;
    padding: 8px 40px;
    background-color: var(--primary-color);
    border-radius: 10px;
    font-size: 16px;
    color: var(--text-color);
  }
  @media (max-width: 680px) {
    padding: 55px 40px;
    margin-bottom: 50px;
  }
  @media (max-width: 420px) {
    padding: 40px 5px;
    margin-bottom: 0px;
    .title {
      font-size: 28px;
    }
    form {
      align-items: center;
      padding: 0 7%;
      input {
        width: 100%;
        font-size: 16px;
        padding: 10px 0 10px 25px;
        border-radius: 10px;
      }
      button {
        font-size: 16px;
        padding: 15px 75px;
      }
    }
    a{
      font-size: 14px;
    }
  }
  @media (max-width: 375px) {
    width: 90%;
    padding: 40px 0;
    form{
      width: fit-content;
    }
  }
}
