* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Vazirmatn", sans-serif;
}

body {
  background: #0d0d0d;
  color: #fff;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  text-align: center;
}

.card {
  background: #1a1a1a;
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.2);
  border: 1px solid rgba(212, 175, 55, 0.2);
  width: 320px;
}

.title {
  font-size: 32px;
  color: #d4af37;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 30px;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn {
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.login {
  background: #d4af37;
  color: #000;
}

.register {
  border: 1px solid #d4af37;
  color: #d4af37;
}

.btn:hover {
  transform: scale(1.05);
}