/* Google Font CDN Link */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}


.content {
    margin: 20px 0;
    min-height: 100vh;
    padding: 20px 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cont .animate{
  transform: translateX(-20%);
}
.cont.show-animation .animate{
  transform: translateX(0);
}

.content .animate{
  transform: translateX(-200%);
}
.content.show-animation .animate{
  transform: translateX(0);
}

 .content .left-side {
  min-width: 25%;
  height: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  position: relative;
  background: #202020;
  border-radius: 20px;
}
.content .left-side::after {
  content: "";
  position: absolute;
  height: 70%;
  width: 50%;
  right: -20px;
  top: -30px;
  background: #2a2a2a;
  border-radius: 30px;
  z-index: -2;
  box-shadow: 0 0px 50px 3px rgba(243, 242, 243, 0.137);
}
.content .left-side .details {
  margin: 14px;
  text-align: center;
}
.content .left-side .details i {
  font-size: 30px;
  color: #ff004f;
  margin-bottom: 10px;
}
.content .left-side .details .topic {
  font-size: 18px;
  font-weight: 500;
}
.content .left-side .details .text-one,
.content .left-side .details .text-two {
  font-size: 14px;
  color: #afafb6;
}

 .content .right-side {
  width: 75%;
  height: 80%;
  padding: 10px 20px;
  margin-left: 75px;
  background: #202020;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  position: relative;
}
.content .right-side::after{
  content: "";
  display: table;
  position: absolute;
  height: 200px;
  width: 80%;
  bottom: -30px;
  right: -30px;
  border-radius: 30px;
  background: #2a2a2a;
  z-index: -2;
  box-shadow: 0 0px 50px 3px rgba(243, 242, 243, 0.137);
}
.content .right-side .topic-text {
  font-size: 2rem;
  margin: 5px 0;
  font-weight: 600;
  width: 100%;
  color: #ff004f;
}
.content .right-side  p{
    width: 100%;
}
.right-side .input-box {
  height: 55px;
 
  margin: 12px 0;
}
.right-side .input-box input,
.right-side .input-box textarea {
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  color: #fff;
  border-radius: 15px;
  border: 3px solid #2a2a2a;
  background: #202020;
  padding: 0 15px;
  resize: none;
}
.right-side .message-box {
  min-height: 110px;
}
.right-side .input-box textarea {
  padding-top: 6px;
}
.right-side .button {
  display: inline-block;
  margin-top: 12px;
  width: 100%;
}

.right-side .button button {
  width: max-content;
  color: #fff;
  font-size: 18px;
  height: 50px;
  outline: none;
  border: 3px solid #ff004f;
  padding: 8px 16px;
  border-radius: 6px;
  text-transform: uppercase;
  background: #ff004f;
  cursor: pointer;
  box-shadow: 0 0px 5px 5px rgba(46, 46, 46, 0);
  transition: all 0.3s ease;
  float: right;
}
.right-side .button button:hover{
  box-shadow: 0 0px 100px 16px rgb(255, 0, 79, 0.7);
  
}
form{
  width: 100%;
    height: auto;
}
#date{
  display: none;
}
.right-side .input-box input:focus,
.right-side .input-box textarea:focus{
  border: 3px solid #ff004f;
  box-shadow: 0px 0px 5px 2px #ff004f;
}

@media (max-width: 950px) {
 .content{
  padding: 30px 20px;
  flex-direction: column;
  gap: 20px;
 }

   .content .right-side {
    width: 75%;
    margin-left: 55px;
  }
}
@media (max-width: 820px) {

   .content .left-side {
    width: 100%;
    flex-direction: row;
    margin-top: 40px;
    justify-content: center;
    flex-wrap: wrap;
  }
   .content .left-side::before {
    display: none;
  }
 .content .right-side {
    width: 100%;
    margin-left: 0;
  }
}
@media (max-width:350px) {
  
.content {
  padding: 20px 10px;
}
.content .right-side::after{
  bottom: -10px;
  right: -10px;
  border-radius: 20px;
}
.content .left-side::after {
  right: -10px;
  border-radius: 20px;
  top: -10px;
}
  
}
/* /// */
