body{
    padding: 0;
    margin: 0;
    background-color: beige;
    background-image: url('../photo/back.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

 .form-control1{
   width: 55% !important;
   border: none !important;
  } 
.containe{
  margin: auto;
  width: 58%;
  height: auto;
  border-top: 1px solid #ffffff75;
  border-left: 1px solid #ffffff75;
  box-shadow: 5px 20px 12px #00000035;
  background: #ffffff25;
  border-radius: 15px;
  backdrop-filter: blur(4px);
  padding: 10px;
   display: flex;              /* اضافه شد */
  flex-direction: column;     /* آیتم‌ها زیر هم قرار بگیرن */
  align-items: center;        /* وسط افقی */
  justify-content: center;    /* وسط عمودی */

}

.img{
 display: block;
  margin: auto;
  width: 35%;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .containe {
    width: 98%;       /* باکس کل صفحه رو بگیره */
  }

  .form-control1 {
    width: 90% !important;
    flex-wrap: nowrap !important; 
    border: none !important;     /* input کل عرض باکس رو بگیره */
  }

  
  .img{
  display: block;
  margin: auto;
  width: 70%;
 }

 
}

.container-info {
  display: flex;
  align-items: center;
  gap: 50px;
  justify-content: center; /* وسط‌چین بشن */
  flex-wrap: nowrap;         /* اگه جا نشد، برن خط بعدی */
  text-align: center;      /* متن‌ها وسط هر باکس */
}

/* 📱 توی موبایل: زیر هم بشن */
@media (max-width: 768px) {
  .container-info {
    flex-direction: column; /* آیتم‌ها عمودی بشن */
    gap: 15px;              /* فاصله کمتر بشه */
    align-items: center;
  }
}

