/**
 * Password Reset (request) page.
 * Moved from templates/accounts/password_reset.html inline styles.
 */
.password-reset-container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}

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

.password-reset-header h1 {
  color: #333;
  margin-bottom: 0.5rem;
}

.password-reset-header i {
  margin-right: 0.5rem;
  color: #007bff;
}

.password-reset-subtitle {
  color: #666;
  font-size: 1.1rem;
}

.password-reset-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.password-reset-card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.password-reset-container .form-section {
  margin-bottom: 2rem;
}

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

.password-reset-container .form-group label {
  display: block;
  font-weight: 600;
  color: #555;
  margin-bottom: 0.5rem;
}

.password-reset-container .form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.password-reset-container .form-control:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.password-reset-container .form-help {
  display: block;
  margin-top: 0.25rem;
  color: #666;
  font-size: 0.875rem;
}

.password-reset-container .error-message {
  margin-top: 0.25rem;
  color: #dc3545;
  font-size: 0.875rem;
}

.password-reset-container .error-message span {
  display: block;
}

.password-reset-container .form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}

.password-reset-container .btn {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1rem;
}

.password-reset-container .btn i {
  margin-right: 0.5rem;
}

.password-reset-container .btn-primary {
  background-color: #007bff;
  color: white;
}

.password-reset-container .btn-primary:hover {
  background-color: #0056b3;
  transform: translateY(-1px);
}

.password-reset-container .btn-secondary {
  background-color: #6c757d;
  color: white;
}

.password-reset-container .btn-secondary:hover {
  background-color: #545b62;
  transform: translateY(-1px);
}

.reset-info-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.password-reset-container .reset-info-sidebar .info-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.password-reset-container .reset-info-sidebar .info-card h4 {
  color: #333;
  margin-bottom: 1rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.password-reset-container .reset-info-sidebar .info-card h4 i {
  margin-right: 0.5rem;
  color: #007bff;
}

.reset-steps ol {
  margin: 0;
  padding-left: 1.25rem;
  color: #666;
  font-size: 0.875rem;
}

.reset-steps li {
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.help-info p {
  margin-bottom: 0.75rem;
  color: #555;
  font-size: 0.9rem;
}

.help-info ul {
  margin: 0;
  padding-left: 1.25rem;
  color: #666;
  font-size: 0.875rem;
}

.help-info li {
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .password-reset-content {
    grid-template-columns: 1fr;
  }
  .password-reset-container .form-actions {
    flex-direction: column;
  }
  .password-reset-container .btn {
    text-align: center;
    justify-content: center;
  }
}
