/* Form Layout */
.account-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #ff69b4;
  text-shadow: 0 0 6px rgba(255,105,180,0.6);
}

/* Inputs */
.form-group textarea,
.form-group input[type="file"] {
  width: 100%;
  background: #000;
  color: #fff;
  border: 1px solid #ff69b4;
  border-radius: 12px;
  padding: 12px;
  font-size: 0.95rem;
  transition: 0.3s ease;
}

.form-group textarea::placeholder {
  color: #aaa;
}

.form-group textarea:focus,
.form-group input[type="file"]:focus {
  outline: none;
  border-color: #ff00ff;
  box-shadow: 0 0 14px rgba(255,105,180,0.6);
}

/* File Input Polish */
.form-group input[type="file"] {
  cursor: pointer;
}

/* Actions */
.form-actions {
  margin-top: 10px;
}

.save-profile-btn {
  width: 100%;
  font-size: 1.05rem;
  padding: 14px;
}

/* Mobile */
@media (max-width: 600px) {
  .edit-profile-card {
    padding: 25px;
  }
}
