* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #e3e3e3; /* Sabit arka plan rengi */
  font-family: Arial, sans-serif;
}







.contact-container {
  width: 100%;
  max-width: 700px;
  height:790px;
  padding: 3em;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(-30px);
  animation: slideIn 1.2s ease-out forwards;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


form label {
  display: block;
  margin-bottom: 0.5em;
  color: #333;
  font-size: 1.1em;
}

form input, form textarea {
  width: 100%;
  padding: 1em;
  margin-bottom: 1.5em;
  border: 1px solid #ccc;
  border-radius: 8px;
  transition: box-shadow 0.3s, transform 0.2s;
  font-size: 1.1em;
}

form input:focus, form textarea:focus {
  box-shadow: 0px 0px 8px rgba(0, 123, 255, 0.8);
  transform: scale(1.02);
}

button {
  width: 100%;
  padding: 1em;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1em;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

button:hover {
  background-color: #0056b3;
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.contact-info {
  margin-top: 2em;
  padding-top: 1em;
  border-top: 1px solid #ddd;
  color: #555;
  font-size: 1em;
  animation: fadeIn 1.5s ease-out;
}

.contact-info h3 {
  margin-bottom: 1em;
  text-align: left;
  color: #007bff;
  font-size: 1.5em;
}

.info-item {
  display: flex;
  align-items: center;
  margin: 0.5em 0;
  padding: 0.5em 0;
}

.info-item .icon {
  font-size: 1.5em;
  color: #007bff;
  margin-right: 0.5em;
}

.info-item p {
  margin: 0;
  font-size: 1.1em;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

button:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
}


.info-item a {
  color: #007bff; /* Bağlantı rengi */
  text-decoration: none; /* Alt çizgi yok */
  transition: color 0.3s ease, text-shadow 0.3s ease; /* Geçiş efekti */
}

.info-item a:hover {
  color: #0056b3; /* Üzerine gelindiğinde rengi değiştir */
  text-shadow: 0 0 5px rgba(0, 123, 255, 0.5); /* Altına hafif gölge ekle */
  font-weight: bold; /* Yazıyı kalın yap */
}
