
.page-content {
  display: flex;
  justify-content: center;
  padding-top: 120px;
  padding-left: 120px;
}

.settings-container {
  width: 900px;
  display: flex;
  gap: 40px;
}


.settings-left {
  width: 35%;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 25px;
  height: fit-content;
}

.settings-title {
  text-align: center;
  margin-bottom: 25px;
}

.settings-item {
  display: block;
  padding: 10px 0;
  font-size: 16px;
  color: #333;
  text-decoration: none;
}

.settings-item:hover {
  color: #6a5acd;
}

.logout-btn {
  display: block;
  margin: 30px auto 0;
  background: #6a5acd;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  color: white;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.25s ease;
}

.logout-btn:hover {
  background: #5a4ac0;
}

.logout-btn:active {
  background: #4a3ab0;
}

.settings-right {
  width: 65%;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 25px;
}

.section-title {
  margin-bottom: 20px;
}


.settings-form label {
  display: block;
  margin-top: 15px;
  font-weight: 500;
}

.form-input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-top: 5px;
}

.form-textarea {
  height: 100px;
  resize: none;
}

.note {
  font-size: 13px;
  color: #777;
  margin-top: 8px;
}


.submit-btn {
  margin-top: 20px;
  background: #6a5acd;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  color: white;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.25s ease;
}

.submit-btn:hover {
  background: #5a4ac0;
}

.submit-btn:active {
  background: #4a3ab0;
}
