body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  background: url("/images/bg-3.jpg") no-repeat center center fixed;
  background-size: cover;
  color: #ffffff;
}

.form-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 90vh;
}

.form-card {
  background: rgba(52, 58, 64, 0.8);
  /* Arka plan opaklığı */
  border-radius: 10px;
  padding: 2rem;

  width: 100%;
  max-width: 500px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(52, 58, 64, 0.2);
}

.form-card h3 {
  color: #ffd700;
  /* Altın sarısı başlık */
}

.form-card label {
  color: #ffffff;
}

.form-card button {
  background: linear-gradient(45deg, #6b5b95, #feb236);
  width: 100%;
  padding: 10px;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.form-card button:hover {
  background: linear-gradient(45deg, #feb236, #6b5b95);
}

::placeholder {
  color: #ccc;
}

.signup-text {
  margin-top: 15px;
  font-size: 0.9rem;
  color: #dcdcdc;
}

.signup-text a {
  color: #ffd700;
  text-decoration: none;
  font-weight: bold;
}

.signup-text a:hover {
  color: #ffd700;
  text-decoration: underline;
  font-weight: bold;
}
