.account-section {
  margin-bottom: 130px;
}

.account-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.account-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

/* Fix eye icon alignment */
.toggle-password {
  position: absolute;
  top: 70%;
  right: 14px;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 1rem;
  color: #666;
  z-index: 2;
  padding: 0 5px;
}


.btn-blue {
  background-color: #268bcc;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px;
  border-radius: 6px;
  border: none;
  width: 100%;
  transition: background-color 0.3s ease;
}

.btn-blue:hover {
  background-color: #fff;
  color: #268bcc;
  border: 2px solid #268bcc;
}





/* lost password css start */

/* Lost Password Page Styles */

.lost-password-section {
  padding: 60px 20px;
  background-color: #fff;
}

.lost-password-container {
  max-width: 550px;
  margin: 0 auto;
  background: #f9f9f9;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.lost-password-title {
  color: #268bcc;
  margin-bottom: 20px;

}

.lost-password-subtext {


  margin-bottom: 30px;
}

.lost-password-form-group {
  text-align: left;
  width: 100%;
  margin-bottom: 20px;
}

.lost-password-label {
  font-weight: 600;
  font-size: 1rem;
  display: block;
  margin-bottom: 8px;
}

.lost-password-input {
  width: 100%;
  padding: 12px 15px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

.lost-password-btn {
   background-color: #268bcc;
  color: #fff;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
  border: 2px solid #268bcc;
}

.lost-password-btn:hover {
  background-color: #fff;
  color: #268bcc;
  border: 2px solid #268bcc;
}










.account-dashboard {
  padding: 40px 0;
  background-color: #f9f9f9;
}

.dashboard-wrapper {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  padding: 30px;
  gap: 30px;
}

.dashboard-sidebar {
  width: 250px;
  border-right: 1px solid #eee;
}

.dashboard-title {
  font-size: 22px;
  margin-bottom: 20px;
}

.logout-link {
  display: inline-block;
  margin: 10px 0 30px;
  color: #e74c3c;
  font-weight: 500;
}

.dashboard-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dashboard-menu li {
  margin-bottom: 12px;
}

.dashboard-menu a {
  color: #333;
  text-decoration: none;
  display: block;
  padding: 8px 0;
  transition: all 0.2s;
}

.dashboard-menu a:hover {
  color: #007bff;
  text-decoration: underline;
}

.dashboard-content {
  flex: 1;
}

.section-heading {
  font-size: 20px;
  margin-bottom: 20px;
}

.orders-table {
  width: 100%;
  border-collapse: collapse;
}

.orders-table th,
.orders-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
  text-align: left;
}

.orders-table th {
  background-color: #f1f1f1;
}
