.form-container-section{
    min-height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(images/contactbckgrn.png)no-repeat center/cover;
  }
  .form-container {
    box-shadow:  1px 1px 5px rgb(31, 21, 5), -1px -1px 5px rgb(31, 21, 5);
    max-width: 400px;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    flex-wrap: wrap;
    padding: 10px;
  }
  .form-container h1{
    color:  rgb(255, 228, 196);
    font-weight: 600;
    width: 100%;
    text-align: center;
  }
  .form-container p{
    color:  rgb(255, 228, 196);
    text-align: center;
  }
  .form-container a{
    color: rgb(255, 228, 196);
  }
.form-container #form{
    max-width: 300px;
    width: 100%;
    height: auto;
}
  .form-group {
    margin-bottom: 25px;
  }

 .form-group  label {
    display: block;
    margin-bottom: 0px;
    font-weight: bold;
    font-size: 20px;
    color: rgb(255, 228, 196);
  }

  .form-group input[type="text"], input[type="password"] {
    width: 100%;
    background: none;
    border: none;
    border-bottom: 2px solid #fff;
    color:  #ffffff;
    font-weight: 300;
    font-size: 15px;
    padding: 10px;
    outline: none;
  }
  .form-container input::placeholder {
    color: rgb(237, 216, 216, 0.5);
    padding: 0px;
  }

  .form-container #button {
    border: none;
    background:rgb(176, 247, 184);
    border-radius: 5px;
     font-weight: 600;
    font-size: 20px;
    color: rgb(31, 21, 5);
    width: 100%;
    height: auto;
    padding: 8px;
    transition: 0.3s;
    margin-bottom: 10px;
    
  }
  
  .form-container #button:hover{
      background-color: rgb(31, 21, 5);
      color:  rgb(176, 247, 184);
      transition: .5s ease-in-out;
      box-shadow: 0px 0px 5px rgb(176, 247, 184);
  }
   .form-container .error-message {
    color: rgb(176, 247, 184);
    font-size: 15px;
    margin-top: 4px;

  }
  @media (max-width: 450px){
    .form-container {
      max-width: 300px; 
      padding: 5px;     
  }

   .form-container #form {
      max-width: 250px; 
  }

  .form-container h1 {
      font-size: 18px;  
     
  }

   .form-container label {
      font-size: 16px;  
  }

   .form-container input[type="text"], input[type="password"] {
      font-size: 14px;  
      padding: 8px;     
  }

  .form-container #button {
      font-size: 18px;  
      padding: 6px;     
  }

   .form-container .error-message {
      font-size: 13px;  
  }
} 
/* end of login */
/* begin the add to cart product page */

.cart-container{
  display: flex;
  width: 1000px;
  margin: 20px auto;
  color: rgb(44, 22, 8);
}
.left{
  width: 45%;
  padding: 25px;
  margin-top: 10px;
}
.big-img{
  width: 350px;
}
.big-img img{
  width: inherit;
}
.images{
  display: flex;
  justify-content: space-between;
  width: 70%;
  margin-top: 15px;
  margin-left: 37px;
}
.small-img{
  width: 60px;
  overflow: hidden;

}
.small-img img{
  width: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  transition: filter 0.3s ease-in-out;
}
.small-img:hover img{
  transform: scale(1.2);
  filter: brightness(1.2);
  
}

.pname{
  font-size: 38px;
  margin-top: 30px;
  text-align: left;
  padding: 0px;
}
.ratings i{
  color: rgb(44, 22, 8);
  font-size: 15px;  
  padding-top: 5px;
}

.price{
  font-size: 23px;
  font-weight: 500;
  margin: 20px 0;
  font-weight: 600;
}
.price p, a {
  font-size: 16px;
  font-weight: 400;
  color: rgb(44, 22, 8);
}

.size{
  display: flex;
  align-items: center;
  margin: 20px 0;
}
.size p{
  font-size: 18px;
  font-weight: 500;
}
.psize{
  width: 40px;
  height: 25px;
  border: 0.8px solid rgb(31, 21, 5);
  color: rgb(31, 21, 5);
  text-align: center;
  margin: 0 10px;
  cursor: pointer;
}
.psize.active{
  border: 0.8px solid rgba(0, 146, 69, 0.8);
  color:rgb(31, 21, 5);
  font-weight: 500;
}
.quantity{
  display: flex;
}
.quantity p{
  font-size: 18px;
  font-weight: 500;
}
.quantity input{
  width: 40px;
  border: 0.8px solid rgb(31, 21, 5);
  font-size: 17px;
  font-weight: 500;
  text-align: center;
  margin-left: 15px;
  background-color: rgb(246, 227, 205);
}
.btn-box{
  display: flex;
  margin-top: 13px;
  margin-bottom: 10px;
}
.btn-box button{
  width: 100%;
  font-size: 18px;
  padding: 8px 25px;
  border: none;
  outline: none;
  border-radius: 6px;
  cursor: pointer;
  background-color: rgb(0, 146, 68);
  color: white;
}
.btn-box button:hover{
  box-shadow: 1px 1px 5px rgba(27, 0, 0, 0.138);
    background-color: rgba(255, 255, 255);
    color: rgb(0, 146, 69, 1);
    transition: 0.5s ease;
}
/* FAQ STYLES */
.faq-section {
  width: 100%;
  display: flex;
  flex-direction: column;

}

.faq-container {
  width: 100%;
  max-width: 600px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.faq-tab {
  max-width: 600px;
  position: relative;
}

.faq-tab .label {
  position: relative;
  border-bottom: 1px solid rgb(0, 146, 68);
  padding-top: 10px;
  cursor: pointer;
  font-size: 18px;
  
}

.faq-tab .label::before{
  content: '+';
  position: absolute;
  top: 50%;
  right: 20px;
  font-size: 1.5em;
  transform: translateY(-50%);
}
.faq-tab.active .label::before{
  content: '-';
}


.faq-tab .content {
  position: relative;
  margin: 4px 0px;
  overflow: hidden;
  transition: 0.5s;
  overflow-y: auto;
  height: 0;

}
.faq-tab.active .content{
  height: 150px;
  padding: 10px;
  transition: 0.5s;
}

/* mobile view */
@media (max-width: 500px) {
.big-img img{
  justify-content: center;
  align-items: center;
  margin-left: 30px;
}


.images{
 margin-left: 55px;
} 
.small-img {
  width: 50px;
     
}
}
@media (max-width: 800px) {
  .cart-container {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .left {
    width: 100%;
    padding: 15px;
    justify-content: center;
    align-items: center;
  }
   
  .pname {
    margin-top: 10px;
    text-align: center;
  }

  .price , .ratings {  
    text-align: center;
  }

  .size,
  .quantity {
    justify-content: center;
  }

  .btn-box {
    flex-direction: column;
    align-items: center;
  }

  .btn-box button {
    width: 90%;
  }

  .faq-container {
    width: 95%;
    padding-left: 25px;
  }
  .faq-tab .content p{
    font-size: 14px;
  }
}
/* tablet */

/* end the add to cart product page */
