/* ---------- Edit Profile page ---------- */
.pf-edit-wrapper {
  padding: 60px 0 80px;
}

.pf-back-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  text-decoration: none;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.pf-back-link:hover {
  background: rgba(212, 175, 55, 0.16);
  color: #f3dd9b;
}

.pf-edit-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.6rem;
  margin-left: 60px;
}

.pf-edit-card {
  text-align: center;
  padding: 44px 40px;
  max-width: 460px;
  margin: 0 auto;
}

.pf-edit-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #0e9595, #177a9b);
 
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.pf-edit-icon svg {
  width: 28px;
  height: 28px;
  stroke: #0a0f1f;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pf-edit-sub {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 30px;
}

.pf-edit-form {
  text-align: left;
}

.pf-form-group {
  margin-bottom: 22px;
  position: relative;
}

.pf-form-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #f3dd9b;
  margin-bottom: 8px;
}

.pf-edit-form input,
.pf-edit-form select,
.pf-edit-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 13px 16px;
  color: #ffffff;
  font-size: 0.94rem;
  color-scheme: dark;
  transition: all 0.2s ease;
}

.pf-edit-form input::placeholder,
.pf-edit-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.pf-edit-form input:hover,
.pf-edit-form select:hover,
.pf-edit-form textarea:hover {
  border-color: rgba(255, 255, 255, 0.28);
}

.pf-edit-form input:focus,
.pf-edit-form select:focus,
.pf-edit-form textarea:focus {
  outline: none;
  border-color: #d4af37;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.pf-form-error {
  color: #f87171;
  font-size: 0.78rem;
  margin-top: 6px;
}

.pf-edit-form .pf-btn-primary {
  margin-top: 10px;
  cursor: pointer;
  font-size: 0.95rem;
  padding: 14px 30px;
  letter-spacing: 0.3px;
}

.pf-edit-form .pf-btn-primary:hover {
  cursor: pointer;
}


.pf-btn-primary {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--pf-navy-dark);
 
  text-decoration: none;
  
  transition: all 0.2s ease;
}

.pf-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(9, 137, 160, 0.49);
  color: var(--pf-navy-dark);
}




.pf-back-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  text-decoration: none;
  transition: all 0.2s ease;
  flex-shrink: 0;
  margin-left: 120px;
}

.pf-back-link svg {
  width: 18px;
  height: 18px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;

}

.pf-back-link:hover {
  background: rgba(212, 175, 55, 0.18);
  border-color: rgba(212, 175, 55, 0.4);
}

.pf-back-link:hover svg {
  stroke: #f3dd9b;
}


.pf-password-wrapper {
    position: relative;
  }
  .pf-password-wrapper input {
    width: 100%;
    padding-right: 42px;
  }
  .pf-toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
  }
  .pf-toggle-password:hover {
    color: #f3dd9b;
  }