.avatar-upload {
  position: relative;
  max-width: 160px;
  margin: 5px auto;
  display: flex;
  justify-content: center;
}

.avatar-upload .avatar-edit {
  position: absolute;
  right: 12px;
  z-index: 1;
  top: 10px;
}

.avatar-upload .avatar-edit input {
  display: none;
}

.avatar-upload .avatar-edit input+label {
  display: inline-block;
  width: 34px;
  height: 34px;
  margin-bottom: 0;
  border-radius: 100%;
  background: #FFFFFF;
  border: 1px solid transparent;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  font-weight: normal;
  transition: all 0.2s ease-in-out;
}

.avatar-upload .avatar-edit input+label:hover {
  background: #f1f1f1;
  border-color: #d6d6d6;
}

.avatar-upload .avatar-edit input+label:after {
  content: "\f040";
  font-family: 'FontAwesome';
  color: #757575;
  position: absolute;
  top: 5px;
  left: 0;
  right: 0;
  text-align: center;
  margin: auto;
}

.avatar-upload .avatar-preview {
  width: 110px;
  height: 110px;
  position: relative;
  border-radius: 100%;
  background-image: var(--blue-gradient-ligh2);

  /* box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1); */
  display: flex;
  justify-content: center;
  align-items: center;
}

.avatar-upload .avatar-preview>div {
  width: 60%;
  height: 60%;
  border-radius: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.profile-h {
  text-align: center;
}

/*  */
.form-card {
  background-color: #041c2f;
  border-radius: 15px;
  padding: 70px 20px 20px 20px;
  max-width: 460px;
  margin: auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  color: #aab7c4;
  margin-bottom: 6px;
  font-weight: 500;
}

.form-group input {
  width: 100%;
  padding: 12px 15px;
  font-size: 14px;
  border: none;
  border-radius: 10px;
  background-color: #072940;
  color: #ffffff;
  outline: none;
  transition: all 0.2s ease;
}

.form-group input:focus {
  box-shadow: 0 0 0 2px #fcb00d;
}

.info-icon-section .form-xc {
  margin-bottom: -60px;
  margin-top: 40px;
}

.btn-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn-action {
  flex: 1 1 48%;
  background-color: #fcb00d;
  color: #000;
  padding: 12px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-action.logout {
  background-color: #ff3400;
  color: #fff;
}

.btn-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}