/* style.css */

body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background-image: url('../arkaplan.jpg');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  background-color: rgba(50, 50, 50, 0.6); /* yarı şeffaf gri */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  max-width: 450px;
  width: 90%;
  color: #fff;
  text-align: center;
}

h1 {
  color: #f8f9fa;
  margin-bottom: 20px;
}

input, textarea {
  width: 100%;
  padding: 12px;
  margin: 12px 0;
  border: none;
  border-radius: 8px;
  background-color: #ffffffcc;
  color: #333;
  font-size: 15px;
}

textarea::placeholder,
input::placeholder {
  color: #777;
}

button {
  background-color: #d63384;
  color: white;
  padding: 12px;
  width: 100%;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
}

button:hover {
  background-color: #c21870;
}
