body {
  margin: 0;
  font-family: 'Playfair Display', serif;
  background-color: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.card {
  background-color: #111;
  border-radius: 12px;
  padding: 40px;
  width: 360px;
  text-align: center;
  box-shadow: 0 0 30px rgba(197, 154, 58, 0.2);
}

.icon-circle {
  width: 60px;
  height: 60px;
  border: 1px solid #c59a3a;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle img {
  width: 28px;
  height: 28px;
  filter: brightness(1.2);
}

h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

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

label {
  display: block;
  text-align: left;
  font-size: 12px;
  color: #c59a3a;
  margin-bottom: 5px;
}

input {
  width: 100%;
  padding: 12px;
  background: transparent;
  border: none;
  border-bottom: 1px solid #333;
  color: #fff;
  font-size: 14px;
  margin-bottom: 25px;
}

input::placeholder {
  color: #777;
}

button {
  width: 100%;
  padding: 12px;
  background-color: #c59a3a;
  border: none;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.3s ease;
}

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

.note {
  font-size: 12px;
  color: #aaa;
  margin-top: 15px;
}

.links {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.links a {
  color: #c59a3a;
  text-decoration: none;
  font-size: 13px;
}

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

.error-message {
  color: #d9534f;
  background: rgba(217, 83, 79, 0.1);
  border: 1px solid rgba(217, 83, 79, 0.3);
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 0.85rem;
  margin-bottom: 16px;
}