.account-page {
  padding: 32px 0 56px;
}

.account-content-single {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.account-head h1 {
  margin: 0 0 8px;
  font-size: 32px;
}

.account-head p {
  margin: 0;
  color: #666;
}

.account-message {
  min-height: 20px;
  font-size: 14px;
  font-weight: 700;
}

.account-message.success {
  color: #15803d;
}

.account-message.error {
  color: #c62828;
}

.account-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  padding: 24px;
}

.account-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.account-card-head h3 {
  margin: 0;
  font-size: 22px;
}

.account-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.account-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 700;
}

.form-group input {
  width: 100%;
  border: 1px solid #d9dfeb;
  border-radius: 14px;
  padding: 12px 14px;
  outline: none;
  font-size: 14px;
  background: #fff;
  color: #111;
  transition: 0.2s ease;
}

.form-group input:disabled {
  background: #f8fafc;
  color: #555;
}

.form-group input:not(:disabled):focus {
  border-color: #111;
  box-shadow: 0 0 0 4px rgba(17, 24, 39, 0.06);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: 0.2s ease;
}

.btn-primary {
  background: #111;
  color: #fff;
}

.btn-primary:hover {
  opacity: 0.92;
}

.btn-outline {
  background: #fff;
  color: #111;
  border-color: #d7dbe7;
}

.btn-outline:hover {
  background: #f7f7f7;
}


.password-field {
  position: relative;
  display: flex;
  align-items: center;
}

.password-field input {
  width: 100%;
  padding-right: 46px;
}

.toggle-password {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border: none;
  background: transparent;
  color: #8b8b8b;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.toggle-password:hover {
  color: #111;
}

.toggle-password:focus {
  outline: none;
}

.toggle-password i {
  font-size: 15px;
  pointer-events: none;
}
@media (max-width: 680px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .account-head h1 {
    font-size: 26px;
  }
}