.main{
    background-color: #f8f8f8;
    height: 100%;
    min-height: 100vh;
  
    display: flex;
    justify-content: center;
    padding-top: 75px;
  }
  
  .container{
    display: flex;
    flex-direction: column;
    align-items: center;
  
    width: 501px;
    height: max-content;
  
    padding-top: 34px;
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 32px;
  
    background-color: #FFFFFF;
  
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
  }
  
  .logo{
    background-image: url('/logo.png');
    background-repeat: no-repeat;
    background-size: contain;
  
    width: 142px;
    height: 74px;
  
    margin-bottom: 14px;
  }
  
  .title{
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #2e1f86;
    font-family: 'Inter';
    text-align: center;
  }
  
  .desc{
    font-size: 16px;
    margin-bottom: 16px;
    color: #2e1f86;
    font-family: 'Inter';
    font-weight: 500;
    text-align: center;
  }
  
  .ratings{
    width: 144px;
    margin-bottom: 23px;
  
    display: flex;
    justify-content: space-between;
    
  }
  
  .ratings_item{
    width: 60px;
    height: 60px;
  
    display: flex;
    align-items: center;
    justify-content: center;
  
    border-radius: 100px;
    background-color: #D9D9D9;
  
    cursor: pointer;
  }
  
  .selected div{
    filter: grayscale(0);
  }
  
  .angry_smiley{
    background-image: url(/angry.svg);
    width: 40px;
    height: 40px;
    filter: grayscale(1);
  }
  
  .good_smiley{
    background-image: url(/good.svg);
    width: 40px;
    height: 40px;
    filter: grayscale(1);
  }
  form{
    width: 100%;
  }
  .textarea{
    width: -webkit-fill-available;
    height: 171px;
    min-height: 171px;
    max-height: 171px;
    font-size: 14px;
    font-family: 'Inter';
    color: black;
    margin-bottom: 34px;
    border-radius: 8px;
    border: 1px solid #DFDFDF;
    outline: none;
    padding-top: 16px;
    padding-left: 16px;
    padding-right: 16px;
  
  }
  
  .textarea::-webkit-resizer {
    display: none;
  }
  
  .textarea::placeholder{
    color: #767676;
  }
  
  .sumbit_form, .href-back {
    width: 100%;
    height: 41px;
    background: #2E1F86;
  
    color: #FFFFFF;
    font-size: 14px;
  
    border-radius: 8px;
    border: none;
    font-weight: 500;
    font-family: 'Inter';
  
    cursor: pointer;
  }
  
  .sumbit_form:hover, .href-back:hover{
    background: #3826a1;
  }
  
  .sumbit_form:active, .href-back:hover{
    background: #26196d;
  }

  .href-back {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
  }
  
  
  @media (max-width: 479px) {
    .main{
      background: #ffffff;
      padding-top: 20%;
    }
  
    .container{
      padding-left: 2%;
      padding-right: 2%;
    }
  
    .title{
      text-align: center;
    }
  }