/* Auth Stilleri */
.auth-button {
  display: inline-block;
  padding: 8px 16px;
  margin-right: 10px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.login-button {
  background-color: transparent;
  border: 1px solid #007BFF;
  color: #007BFF;
}

.login-button:hover {
  background-color: #007BFF;
  color: #fff;
}

.register-button {
  background-color: #007BFF;
  border: 1px solid #007BFF;
  color: #fff;
}

.register-button:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}

.logout-button {
  background-color: #dc3545;
  border: 1px solid #dc3545;
  color: #fff;
}

.logout-button:hover {
  background-color: #bd2130;
  border-color: #bd2130;
}

.user-welcome {
  display: inline-block;
  margin-right: 15px;
  font-weight: 500;
  color: #333;
}

/* Form Stilleri */
.auth-container {
  max-width: 400px;
  margin: 50px auto;
  padding: 30px;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.auth-container h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #333;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #555;
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  transition: border-color 0.3s;
}

.form-control:focus {
  border-color: #007BFF;
  outline: none;
}

.auth-btn {
  width: 100%;
  padding: 12px;
  background-color: #007BFF;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.auth-btn:hover {
  background-color: #0056b3;
}

.auth-links {
  text-align: center;
  margin-top: 20px;
}

.auth-links a {
  color: #007BFF;
  text-decoration: none;
}

.auth-links a:hover {
  text-decoration: underline;
}

.alert {
  padding: 12px;
  margin-bottom: 20px;
  border-radius: 4px;
}

.alert-danger {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
} 