.contact__container {
     display: flex;
     align-items: center;
     justify-content: center;
     flex-direction: column;
     gap: 20px;
     padding: 40px;
     background: linear-gradient(135deg, #f9f9f9, #f1f4ff);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact__container>p {
     font-size: 24px;
     font-weight: 600;
     color: #222;
     margin-bottom: 20px;
}

.contact__card {
     width: 100%;
     max-width: 500px;
     padding: 20px;
     display: flex;
     flex-direction: column;
     gap: 15px;
     background: white;
     border-radius: 15px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
     animation: zoomIn 1s ease forwards;
}

.contact__card label {
     font-size: 16px;
     color: #555;
}

.contact__card input,
.contact__card textarea {
     width: 100%;
	 max-width:460px;
     padding: 12px;
     border: 2px solid #ddd;
     border-radius: 10px;
     font-size: 14px;
     color: #333;
     background-color: #f9f9f9;
     transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact__card input:focus,
.contact__card textarea:focus {
     border-color: #6b5ce7;
     box-shadow: 0 0 8px rgba(107, 92, 231, 0.3);
     outline: none;
	 max-width:500px;
}

.contact__card button {
     padding: 12px 20px;
     font-size: 16px;
     font-weight: 600;
     color: white;
     background: linear-gradient(135deg, #6b5ce7, #764ce4);
     border: none;
     border-radius: 12px;
     cursor: pointer;
     transition: background 0.3s ease, transform 0.2s ease;
}

.contact__card button:hover {
     background: linear-gradient(135deg, #764ce4, #6b5ce7);
     transform: scale(1.05);
}

.contact__box {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 15px;
     margin-top: 20px;
}

.contact__social {
     width: 50px;
     height: 50px;
     background: linear-gradient(135deg, #6b5ce7, #ff589f);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
     cursor: pointer;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact__social:hover {
     transform: scale(1.2);
     box-shadow: 0 6px 20px rgba(107, 92, 231, 0.4);
}

/* Анимации */
@keyframes zoomIn {
     0% {
          transform: scale(0.8);
          opacity: 0;
     }

     100% {
          transform: scale(1);
          opacity: 1;
     }
}

/* Адаптивность */
@media screen and (max-width: 768px) {
     .contact__container {
          padding: 20px;
     }

     .contact__card {
          padding: 15px;
     }

     .contact__social {
          width: 40px;
          height: 40px;
     }
}

@media screen and (max-width: 480px) {
     .contact__container>p {
          font-size: 20px;
     }

     .contact__card input,
     .contact__card textarea {
          font-size: 13px;
     }

     .contact__social {
          width: 35px;
          height: 35px;
     }
}