.profile-main-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem;
  width: 100%;
  box-sizing: border-box;
}

.profile-widget {
  background-color: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(10px);
  padding: 2.5rem 3rem;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  width: 100%;
  max-width: 700px; /* Wider than login */
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.main-title {
  text-align: center;
  color: #ffcc00;
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 2.5rem;
  font-family: 'Montserrat', sans-serif;
}

.main-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

#profile-form .form-group {
  margin-bottom: 1.5rem;
}

#profile-form label {
  display: block;
  margin-bottom: 0.6rem;
  font-weight: 600;
  color: #ffcc00;
  font-size: 1.05rem;
}

#profile-form input[type="text"],
#profile-form input[type="email"],
#profile-form input[type="tel"] {
  width: 100%;
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-sizing: border-box;
  font-size: 1rem;
  background-color: rgba(255, 255, 255, 0.08);
  color: #e0e0e0;
  transition: all 0.3s ease;
}

#profile-form input:focus {
  border-color: #ffcc00;
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.3);
}

#profile-form input:disabled {
  background-color: rgba(0, 0, 0, 0.2);
  color: #999;
  cursor: not-allowed;
}

#profile-form small {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #aaa;
}

.form-divider {
  border: none;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 2.5rem 0;
}

.form-subtitle {
  font-family: 'Montserrat', sans-serif;
  color: #ffcc00;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-row {
  display: flex;
  gap: 1.5rem;
}

.form-row .form-group {
  flex: 1;
}

.button-group {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.button-group .btn,
.button-group .btn-secondary {
  flex: 1;
}
