/* Change Password Page Styles */

.ep-change-password-shell {
  max-width: 600px;
  margin: 40px auto;
  padding: 0 20px;
}

.ep-change-password-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 30px;
}

.ep-change-password-head {
  margin-bottom: 30px;
}

.ep-change-password-head h1 {
  font-size: 28px;
  font-weight: 700;
  color: var(--ep-text);
  margin: 0 0 8px 0;
}

.ep-change-password-sub {
  color: #666;
  font-size: 14px;
  margin: 0;
}

.ep-form-group {
  margin-bottom: 20px;
}

.ep-form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--ep-text);
  font-size: 14px;
}

.ep-form-group input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  box-sizing: border-box;
}

.ep-form-group input:focus {
  outline: none;
  border-color: var(--ep-primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

/* Password toggle styles */
.ep-password-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.ep-password-wrapper input {
  width: 100%;
  padding: 10px 40px 10px 12px !important;
  box-sizing: border-box;
}

.ep-password-toggle {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: color 0.2s ease;
  line-height: 0;
  border-radius: 4px;
}

.ep-password-toggle:hover {
  color: var(--ep-primary);
}

.ep-password-toggle:focus {
  outline: 2px solid rgba(7, 47, 102, 0.3);
  outline-offset: 2px;
}

.ep-eye-icon,
.ep-eye-off-icon {
  width: 18px;
  height: 18px;
  display: block;
  pointer-events: none;
}

.ep-form-errors {
  color: #dc3545;
  font-size: 12px;
  margin-top: 5px;
}

.ep-form-help {
  color: #666;
  font-size: 12px;
  margin-top: 5px;
  display: block;
}

.ep-form-actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.ep-btn {
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  border: none;
  transition: all 0.2s;
}

.ep-btn--primary {
  background: var(--ep-primary);
  color: #fff;
}

.ep-btn--primary:hover {
  background: #e66000;
}

.ep-btn--secondary {
  background: #f5f5f5;
  color: var(--ep-text);
}

.ep-btn--secondary:hover {
  background: #e0e0e0;
}

.ep-alert {
  padding: 12px 16px;
  border-radius: 4px;
  margin-bottom: 20px;
  font-size: 14px;
}

.ep-alert--error {
  background: #fee;
  color: #c00;
  border: 1px solid #fcc;
}

.ep-alert--success {
  background: #efe;
  color: #0a0;
  border: 1px solid #cfc;
}

.ep-alert--danger {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

.ep-alert--success {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

/* Responsive Design */
@media (max-width: 768px) {
  .ep-change-password-shell {
    margin: 20px auto;
  }

  .ep-change-password-card {
    padding: 20px;
  }

  .ep-form-actions {
    flex-direction: column;
  }

  .ep-btn {
    width: 100%;
  }
}

