.password-reset-container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 2.5rem;
  max-width: 480px;
  width: 100%;
  margin: 2rem auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeIn 0.6s ease-out;
}

.password-reset-header {
  text-align: center;
  margin-bottom: 2rem;
}

.password-reset-header h2 {
  color: var(--text-color);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.password-reset-header p {
  color: var(--light-text);
  font-size: 0.95rem;
}

.password-reset-form .input-group {
  margin-bottom: 1.5rem;
}

.password-reset-form .form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background-color: var(--input-bg);
  transition: all 0.3s ease;
}

.password-reset-form .form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(60, 103, 221, 0.2);
}

.password-reset-button {
  width: 100%;
  padding: 0.875rem;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.password-reset-button:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(60, 103, 221, 0.3);
}

.password-reset-button:active {
  transform: translateY(0);
}

.back-to-login {
  margin-top: 1.5rem;
  text-align: center;
}

.back-to-login a {
  text-decoration: none;
  color: var(--light-text);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.back-to-login a:hover {
  color: var(--primary-color);
}

/* Responsivo */
@media (max-width: 480px) {
  .password-reset-container {
    padding: 1.5rem;
  }

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

  .password-reset-button {
    padding: 0.75rem;
  }
}
