/* Astroloji temalı genel stil */
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;
}

.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 90vh;
}

.login-card {
  background: rgba(52, 58, 64, 0.8);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  width: 350px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(52, 58, 64, 0.2);
}

.login-header h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #ffd700; /* Altın rengi */
}

.login-header p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #dcdcdc;
}

.login-form input,
.login-form button {
  width: 100%; /* Tüm input ve butonları aynı genişlikte yapar */
  padding: 10px; /* İçeriğe yer açar */
  font-size: 1rem; /* Yazı boyutunu eşitler */
  margin: 10px 0; /* Üst ve alt boşluk sağlar */
  box-sizing: border-box; /* Kenarlıklar dahil genişlik ayarı */
}

.login-form input::placeholder {
  color: #aaa;
}

.login-form button {
  background: linear-gradient(45deg, #6b5b95, #feb236);
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.login-form button:hover {
  background: linear-gradient(45deg, #feb236, #6b5b95);
}

.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;
}

footer {
  width: 100%;
  background: rgba(52, 58, 64, 1);
  text-align: center;
  padding-top: 15px;
  padding-bottom: 10px;
  padding-left: 15px;
  padding-right: 15px;
  color: #dcdcdc;
  min-height: 10vh;
}

footer a {
  color: #ffd700;
  text-decoration: none;
}

footer .footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: small;
  height: 33px;
  gap: 10px;
}

footer .footer-links a:hover {
  color: #ffd700;
  text-decoration: underline;
}

footer .footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 33px;
}
