/* --------------------------
   Modern Settings Form Styles
--------------------------- */

.settings-container {
  max-width: 850px;
  margin: 40px auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.settings-container h1 {
  text-align: center;
  margin-bottom: 25px;
  color: #4b3621;
  font-size: 1.9rem;
  font-weight: 700;
}

/* Section Boxes */
.section {
  margin-bottom: 30px;
  padding: 20px;
  background: #faf7f3;
  border-radius: 14px;
  border: 1px solid #e7ded5;
}

.section h2 {
  margin-bottom: 18px;
  color: #6d4c41;
  font-size: 1.3rem;
  font-weight: 600;
}

/* Input Group */
.input-group {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
}

.input-group label {
  margin-bottom: 6px;
  color: #5b4634;
  font-weight: 600;
  font-size: 14px;
}

/* Inputs & Textareas */
.input-group input,
.input-group textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d4c8be;
  background: #fff;
  outline: none;
  font-size: 15px;
  transition: 0.2s;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: #b88a5b;
  box-shadow: 0 0 6px rgba(184,138,91,0.3);
}

/* Textarea */
textarea {
  min-height: 90px;
  resize: vertical;
}

/* Buttons */
.btns {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.btn {
  padding: 12px 22px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.25s;
  font-weight: 600;
}

.btn-save {
  background: #8d6e63;
  color: white;
}

.btn-save:hover {
  background: #6d4c41;
}

.btn-cancel {
  background: #e0d2c5;
  color: #4b3621;
}

.btn-cancel:hover {
  background: #c7b4a6;
}

/* Mobile Responsive */
@media(max-width: 600px) {
  .settings-container {
    padding: 20px;
  }

  .btns {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}
