@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.containercon{
    min-height: 100vh;
    width: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.containerc{
    width: 80%;
    background: #fff;
    border-radius: 6px;
    padding: 30px 60px 40px 40px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
    margin-top: 10vh;
    height: 70vh;
    padding-top: 40px;
}

.containerc .content{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.containerc .content .left{
    width: 25%;
    height: 100%;
    margin-top: 15px;
    position: relative;
}

.content .left::before{
    content: '';
    position: absolute;
    height: 70%;
    width: 2px;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    background: #2222;
}

.content .left .details{
    margin: 14px;
    text-align: center;
    padding-bottom: 10px;
}

.content .left .details ion-icon{
    font-size: 28px;
    color: black;
    margin-bottom: 1px;
}

.content .left .details .topic{
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
}

.content .left .details .t1{
    font-size: 14px;
    color: black;
    margin-bottom: 5px;
}

.content .left .details a{
    text-decoration: none;
    color: black;
}

.content .left .details a:hover{
    color: green;
}

.containerc .content .right{
    width: 75%;
    margin-left: 75px;
}

.content .right .topic-text{
    font-size: 23px;
    font-weight: 500;
    color: black;
    text-transform: uppercase;
}

.right .input-box{
    height: 50px;
    width: 100%;
    margin: 12px 0;
}

.right .input-box input,
.right .input-box textarea{
    height: 100%;
    width: 100%;
    border: none;
    background: #F0F1F8;
    border-radius: 6px;
    padding: 0 15px;
    resize: none;
    outline: black;
}

.right .input-box textarea{
    font-size: 14px;
    padding: 10px 15px;
}

.right .message-box{
    min-height: 110px;  
}

.right .button{
    margin-top: 12px;
    display: inline-block;
}

.right .button input[type="submit"]{
    background: linear-gradient(#4EB9AB, #6EBA77, #5CB05F);
    color: white;
    font-size: 90%;
    font-weight: 400;
    text-transform: uppercase;
    outline: none;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}



 /*-----------------------------------------------BOTTOM SECTION------------------------------------------------*/


#join{
    background-color: white;
    
    padding-bottom: 5vh;
  }
  
  .bottominput{
   
    width: 100%;
    margin-top: -2vh;
    margin-bottom: 2vh;
    display: inline-block;
    text-align: center;
  }
  
  .bottominput input{
  height: 5vh;
  border-radius: 5px;
  margin-right: 5px;
  text-align: center;
  }
  
  .bottom{
    margin: 0 auto;
  }
  
  #join .btn-trial2{
    width: 15vw;
    text-transform: uppercase;
    font-weight: 400;
    background: linear-gradient(#4EB9AB, #6EBA77, #5CB05F);
    color: white;
    border: 1px solid;
    border-radius: 5px;
    cursor: pointer;
    padding: 6px;
    font-size: 90%;
    margin-bottom: 3vh;
    text-decoration: none;
  }
  
  
  #join h1{
    font-size: 26px;
      text-align: center;
      margin-top: 3vh;
      margin-bottom: 3vh;
      text-transform: uppercase;
      font-weight: 500;
  }

 
  @media (max-width: 991px) {
   .containercon{
       padding-top: 15vh;
   }

    .containerc{
      width: 90%;
      padding: 30px 40px 40px 35px ;
    }

    .containerc .content .right{
     width: 75%;
     margin-left: 55px;
  }

  .btn-trial2{
    min-width: 25vh;
    margin: 10px;
    margin-bottom: 15px;
  }

  }

  @media (max-width: 800px) {
    .containerc{
      margin: 40px 0;
      height: 100%;
    }

    .containerc .content{
      flex-direction: column-reverse;
    }

   .containerc .content .left{
     width: 100%;
     flex-direction: row;
     margin-top: 40px;
     justify-content: center;
     flex-wrap: wrap;
   }

   .containerc .content .left::before{
     display: none;
   }

   .containerc .content .right{
     width: 100%;
     margin-left: 0;
   }

   .btn-trial2{
    min-width: 25vh;
    margin: 10px;
    margin-bottom: 15px;
  }

  }

  @media (max-width: 700px) {
    .btn-trial2{
        min-width: 25vh;
        margin: 10px;
        margin-bottom: 15px;
      }
  }

  @media (max-width: 600px) {
    .btn-trial2{
        min-width: 25vh;
        margin: 10px;
        margin-bottom: 15px;
      }

  }