/* Reset Password Page Styles */
.reset-password-container {
  padding: 2rem;
  max-width: 500px;
  margin: 2rem auto;
  color: #ffffff;
}

.reset-password-card {
  background: #2a2d35;
  border: 1px solid #007bff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 123, 255, 0.3);
}

.reset-password-title {
  text-align: center;
  margin-bottom: 2rem;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
}

.reset-password-loading {
  text-align: center;
  padding: 2rem;
  color: #cbd5e1;
}

.reset-password-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.5rem;
  color: #ffffff;
  font-weight: 600;
}

.form-group input {
  padding: 0.75rem;
  background: #181a20;
  border: 1px solid #444;
  border-radius: 4px;
  color: #ffffff;
  font-size: 1rem;
  box-sizing: border-box;
}

.form-group input:focus {
  outline: none;
  border-color: #007bff;
}

.form-group input:invalid {
  border-color: #dc3545;
}

.reset-btn {
  background: #007bff;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 1rem;
}

.reset-btn:hover:not(:disabled) {
  background: #0056b3;
}

.reset-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.error-message {
  color: #dc3545;
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid #dc3545;
  border-radius: 4px;
  padding: 0.75rem;
  text-align: center;
}

.success-message {
  color: #28a745;
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid #28a745;
  border-radius: 4px;
  padding: 0.75rem;
  text-align: center;
}

.reset-password-links {
  text-align: center;
  margin-top: 2rem;
}

.back-link {
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
}

.back-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .reset-password-container {
    padding: 1rem;
    margin: 1rem auto;
  }

  .reset-password-card {
    padding: 1.5rem;
  }

  .reset-password-title {
    font-size: 1.5rem;
  }
}