

.thank-you {
  animation: popIn 0.5s ease;
  padding: 50px 70px;
  border-radius: 20px;
  box-shadow: 0px 0px 10px 10px rgba(0,0,0,0.1);
  margin-top: 200px;
}



  .comment {
    background: #f1f1f1;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 6px;
  }

  @keyframes popIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
  }

    @media (max-width: 767.4px){
    .thank-you {
      padding: 30px 20px;
      border-radius: 20px;
      box-shadow: 0px 0px 10px 10px rgba(0,0,0,0.1);
      margin-top: 100px;
    }
  }




/* index.php */
        .container-style{
            padding: 50px 70px;
            border-radius: 20px;
            box-shadow: 0px 0px 10px 10px rgba(0,0,0,0.1);
            margin-top: 200px;
            animation: upanddown 5s linear infinite;
        }

        @keyframes upanddown {
            0%{
                transform: translateY(-30px)
            }

            50%{
                transform: translateY(30px)
            }

            100%{
                transform: translateY(-30px)
            }
        }

        .title1{
            font-family: Roboto;
            font-size: 48px;
            font-weight: 400;
            line-height: 56px;
        }

        .keluh-kesah-box{
            height: 130px;
            border-radius: 8px;
            font-family: Roboto;
            font-size: 16px;
            font-weight: 400;
            line-height: 24px;
            color: #504e4eff;
        }

        .custom-btn {
            width: 100%;
            height: 40px;
            color: #fff;
            border-radius: 8px;
            padding: 10px 25px;
            font-family: 'Roboto';
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            display: inline-block;
            box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
            7px 7px 20px 0px rgba(0,0,0,.1),
            4px 4px 5px 0px rgba(0,0,0,.1);
            outline: none;
            text-decoration: none;
        }

        /* 11 */
        .btn-11 {
        border: none;
        background: rgb(251,33,117);
            background: linear-gradient(0deg, rgba(251,33,117,1) 0%, rgba(234,76,137,1) 100%);
            color: #fff;
            overflow: hidden;
        }
        .btn-11:hover {
            text-decoration: none;
            color: #fff;
        }
        .btn-11:before {
            position: absolute;
            content: '';
            display: inline-block;
            top: -180px;
            left: 0;
            width: 30px;
            height: 100%;
            background-color: #fff;
            animation: shiny-btn1 3s ease-in-out infinite;
        }
        .btn-11:hover{
        opacity: .7;
        }
        .btn-11:active{
        box-shadow:  4px 4px 6px 0 rgba(255,255,255,.3),
                    -4px -4px 6px 0 rgba(116, 125, 136, .2), 
            inset -4px -4px 6px 0 rgba(255,255,255,.2),
            inset 4px 4px 6px 0 rgba(0, 0, 0, .2);
        }

        @-webkit-keyframes shiny-btn1 {
            0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
            80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
            81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
            100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
        }

  @media (max-width: 767.4px){
    .container-style{
      padding: 30px 20px;
      margin-top: 100px;
    }

    .title1{
      font-size: 32px!important;
      line-height: 38px!important;
    }
  }


/* view.php */
.input-text{
  width: 100%;
  height: 40px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #504e4eff;
}

#commentSection{
  margin-top: 150px;
}

.hidden {
  display: none !important;
}

/* 16 */
.btn-16 {
  border: none;
  color: #000;
}
.btn-16:after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  direction: rtl;
  z-index: -1;
  box-shadow:
   -7px -7px 20px 0px #fff9,
   -4px -4px 5px 0px #fff9,
   7px 7px 20px 0px #0002,
   4px 4px 5px 0px #0001;
  transition: all 0.3s ease;
}
.btn-16:hover {
  color: #000;
}
.btn-16:hover:after {
  left: auto;
  right: 0;
  width: 100%;
}
.btn-16:active {
  top: 2px;
}