.profile-form {
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: 8px;
  max-width: 600px;
  margin: 2rem auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.profile-form__group {
  margin-bottom: 1.5rem;
}

.profile-form__label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
  font-size: 0.95rem;
}

.profile-form__input,
.profile-form__select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.profile-form__input:focus,
.profile-form__select:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.profile-form__hint {
  display: block;
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.3rem;
}

.profile-form__actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.profile-form__btn {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.profile-form__btn--primary {
  background-color: #007bff;
  color: white;
}

.profile-form__btn--primary:hover {
  background-color: #0056b3;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.profile-form__btn--primary:active {
  transform: scale(0.98);
}

.profile-form__btn--secondary {
  background-color: #6c757d;
  color: white;
}

.profile-form__btn--secondary:hover {
  background-color: #545b62;
}

.profile-form__btn--secondary:active {
  transform: scale(0.98);
}

@media (max-width: 600px) {
  .profile-form {
    padding: 1.5rem;
    margin: 1rem;
  }

  .profile-form__actions {
    flex-direction: column;
  }

  .profile-form__btn {
    width: 100%;
  }
}
