.edit-info-button {
  padding: 1px 3px;
  margin: 0px 5px;
  border: none;
  border-radius: 3px;
  transition: transform 0.5s ease;
  cursor: pointer;
}

.edit-info-button:hover {
  transform: rotateY(0deg) scale(1.075);
}

.profile-summary {
  display: flex;
  height: 100%;
  align-items: center;
  padding: 20px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  z-index: 2;
  position: relative;
}

.profile-image {
  width: 110px;
  height: 110px;
  background-image: url("../images/profile-image.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  margin-right: 20px;
  border: 3px solid #ffffff;
}

.profile-details {
  color: white;
}

.profile-details h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.profile-details p {
  margin: 5px 0 0;
  font-size: 14px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.accountCard-area {
  display: flex;
  flex-wrap: wrap;
  margin: 30px;
}

.form {
  width: 700px;
  margin: 30px auto;
  background-color: rgb(240, 234, 214);
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
  border: 1px solid rgb(50, 100, 225, 0.7);
}

.form h2 {
  text-align: center;
  padding: 5px;
  font-size: 18px;
  font-weight: normal;
  color: white;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.6);
  background: linear-gradient(135deg,
      rgba(50, 100, 225, 0.8) 60%,
      rgba(210, 225, 250) 100%);
}

.form-container {
  display: flex;
  flex-direction: column;
  padding: 30px;
  margin: 0 15px;
}

.form-group {
  margin: 10px 0px;
}

label {
  display: block;
  color: #555;
  margin: 1px 0px;
}

input[type="email"],
input[type="tel"],
input[type="password"],
input[type="text"] {
  width: 100%;
  padding: 8px;
  margin: 5px 0px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

.blurred-box {
  background-color: #f0f0f0;
  color: #aaa;
  cursor: not-allowed;
  text-overflow: ellipsis;
}

.blurred-box::placeholder {
  color: #aaa;
}

.info-text {
  display: block;
  font-size: 12px;
  color: #999;
  margin-top: 5px;
}

.form-group .toggle {
  display: inline-block;
  width: 60px;
  height: 34px;
  position: relative;
}

.form-group .toggle input {
  display: none;
}

.form-group .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
}

.form-group .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked .slider {
  background-color: rgb(50, 100, 225);
}

input:checked .slider:before {
  transform: translateX(26px);
}

.form-buttons-tab {
  display: flex;
  justify-content: space-between;
}

.form-button {
  color: rgb(50, 100, 225);
  background-color: rgb(210, 225, 250);
  border: none;
  padding: 5px;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  transition: background-color 0.3s;
}

.form-button:hover {
  color: white;
  background-color: rgb(50, 100, 225);
}

.form-button[type="reset"] {
  background-color: #ebebeb;
}

.form-button[type="reset"]:hover {
  background-color: #999999;
}