* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  min-height: 100vh;
  background: linear-gradient(135deg, #000000, #1a1a1a);
  display: flex;
  align-items: center;
  justify-content: center;
}

.reset-container {
  width: 100%;
  padding: 20px;
}

.reset-card {
  max-width: 420px;
  margin: auto;
  background: #0f0f0f;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(218, 165, 32, 0.15);
  border: 1px solid rgba(218, 165, 32, 0.2);
}

.reset-card h2 {
  text-align: center;
  color: #daa520;
  font-weight: 600;
  margin-bottom: 5px;
}

.subtitle {
  text-align: center;
  font-size: 14px;
  color: #aaa;
  margin-bottom: 25px;
}

.input-group {
  margin-bottom: 18px;
}

.input-group label {
  display: block;
  font-size: 13px;
  color: #ccc;
  margin-bottom: 6px;
}

.input-group input {
  width: 100%;
  padding: 12px 14px;
  background: #111;
  border: 1px solid #333;
  border-radius: 8px;
  color: #fff;
  outline: none;
  transition: 0.3s;
}

.input-group input:focus {
  border-color: #daa520;
  box-shadow: 0 0 0 2px rgba(218, 165, 32, 0.15);
}

.btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #daa520, #b8860b);
  border: none;
  border-radius: 10px;
  font-weight: 600;
  color: #000;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 5px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(218, 165, 32, 0.35);
}

.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.loader {
  display: none;
  width: 18px;
  height: 18px;
  border: 3px solid rgba(0, 0, 0, 0.2);
  border-top-color: #000;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;

  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center;
}

@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.btn.loading .btn-text {
  visibility: hidden;
}

.btn.loading .loader {
  display: block;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

.back-login {
  text-align: center;
  margin-top: 18px;
  font-size: 14px;
  color: #aaa;
}

.back-login a {
  color: #daa520;
  text-decoration: none;
  font-weight: 500;
}