.usp-container {
  max-width: 650px;
  margin: 40px auto;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 25px 30px;
  font-family: Arial, sans-serif;
}
.usp-container h2 {
  margin-bottom: 30px;
  text-align: center;
}
.usp-tabs {
  display: flex;
  border-bottom: 2px solid #ddd;
  margin-bottom: 30px;
  user-select: none;
}
.usp-tab {
  flex: 1;
  text-align: center;
  padding: 14px 0;
  cursor: pointer;
  font-weight: 600;
  color: #555;
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.usp-tab.active {
  color: #007bff;
  border-color: #007bff;
}
.usp-tab-content {
  display: none;
}
.usp-tab-content.active {
  display: block;
}
.usp-container label {
  display: block;
  margin: 14px 0 6px 0;
  font-weight: 600;
}
.usp-container input[type="text"],
.usp-container input[type="email"],
.usp-container input[type="password"],
.usp-container input[type="tel"],
.usp-container textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
  font-size: 15px;
  transition: border-color 0.3s ease;
}
.usp-container input[type="text"]:focus,
.usp-container input[type="email"]:focus,
.usp-container input[type="password"]:focus,
.usp-container input[type="tel"]:focus,
.usp-container textarea:focus {
  outline: none;
  border-color: #007bff;
}
.usp-container textarea {
  resize: vertical;
  min-height: 80px;
}
.usp-container button {
  margin-top: 22px;
  background: #007bff;
  border: none;
  color: white;
  padding: 12px 22px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.usp-container button:hover {
  background: #0056b3;
}
.usp-profile-pic-wrapper {
  text-align: center;
  margin-bottom: 20px;
}
.usp-profile-pic {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #007bff;
  display: inline-block;
}
.usp-file-input-label {
  display: inline-block;
  margin-top: 10px;
  background-color: #007bff;
  color: white;
  padding: 8px 18px;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.usp-file-input-label:hover {
  background-color: #0056b3;
}
input[type="file"] {
  display: none;
}
@media (max-width: 480px) {
  .usp-container {
    margin: 20px 15px;
    padding: 20px 15px;
  }
  .usp-container button {
    width: 100%;
  }
}
