body {
  font-family: 'Lato', sans-serif;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
}

.container-editaccount {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.title-editaccount {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 2.5rem;
}

.profile-info-editaccount {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}

.profile-user-editaccount {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.profile-img-wrapper-editaccount {
  position: relative;
}

.profile-img-editaccount {
  width: 100px;
  height: 100px;
  border-radius: 9999px;
  object-fit: cover;
}

.edit-icon-bg-editaccount {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 100px;
  height: 100px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.edit-icon-editaccount {
  width: 37px;
  height: 37px;
}

.user-name-editaccount {
  font-weight: bold;
  font-size: 20px;
}

.user-email-editaccount {
  color: #6b7280;
  font-size: 14px;
}

.edit-btn-editaccount {
  background-color: #4182F9;
  color: white;
  border-radius: 8px;
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

.form-grid-editaccount {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.form-group-editaccount {
  display: flex;
  flex-direction: column;
}

.form-label-editaccount {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 0.5rem;
}

.form-input-editaccount {
  background-color: #F8F8F8;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  border: none;
  color: gray;
  flex: 1;
  width: 100%;
}

.input-group-editaccount {
  position: relative;
  display: flex;
  align-items: center;
}

.input-btn-overlay {
  position: absolute;
  right: 10px;
  background-color: #4182F9;
  color: white;
  border: none;
  padding: 6px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  height: 70%;
}

.phone-wrapper-editaccount {
  display: flex;
  align-items: center;
  background-color: #F8F8F8;
  border-radius: 8px;
  padding: 0 12px;
  height: 46px;
  position: relative;
}

.country-code-editaccount {
  background: transparent;
  border: none;
  font-size: 14px;
  color: gray;
  outline: none;
  width: 70px;
  cursor: text;
}

.separator-editaccount {
  width: 1px;
  height: 60%;
  background-color: #ccc;
  margin: 0 10px;
}

.phone-input-editaccount {
  flex: 1;
  background: transparent;
  border: none;
  font-size: 14px;
  color: gray;
  outline: none;
}
.dropdownas {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100px;
  background-color: #fff;
  border: 1px solid #ccc;
  max-height: 150px;
  overflow-y: auto;
  z-index: 10;
  border-radius: 4px;
}
.dropdownas.visible {
  display: block;
}
.dropdown-item {
  padding: 8px;
  cursor: pointer;
}
.dropdown-item:hover {
  background-color: #f0f0f0;
}