/* GENEL SAYFA TASARIMI */
body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #fdfcfb, #e2d1c3);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

/* FORM KUTUSU */
.form-container {
  background: #fff;
  padding: 30px 40px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  width: 350px;
  text-align: center;
}

/* BAŞLIK */
.form-container h2 {
  color: #333;
  margin-bottom: 20px;
  font-size: 22px;
}

/* LABEL ve INPUT */
label {
  display: block;
  text-align: left;
  margin-bottom: 5px;
  font-weight: 500;
  color: #444;
}

input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1.5px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
}

input:focus {
  border-color: #c4a484;
  box-shadow: 0 0 5px rgba(196, 164, 132, 0.5);
}

/* BUTON */
button {
  width: 100%;
  padding: 10px;
  background-color: #c4a484;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background-color: #b08a67;
}

/* ALT YAZI */
.alt-text {
  margin-top: 15px;
  font-size: 14px;
}

.alt-text a {
  color: #b67a4d;
  text-decoration: none;
  font-weight: 500;
}

.alt-text a:hover {
  text-decoration: underline;
}
