/* =======================
   GLOBAL STYLES
======================= */
body {
  background: #F7F7F7;
  font-family: 'Poppins', system-ui, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
}

h2, h3 {
  color: #8B1E1E;
  margin-bottom: 16px;
  font-weight: 600;
}

h3 {
  font-size: 1.2rem;
}

/* =======================
   WRAPPER
======================= */
.nc-wrapper {
  max-width: 720px;
  margin: auto;
  padding: 16px;
}

/* =======================
   CARD
======================= */
.nc-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
 /* box-shadow: 0 10px 25px rgba(0,0,0,0.08);*/
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nc-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

/* =======================
   INPUTS & SELECT
======================= */
input, select, textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #ddd;
  margin-bottom: 14px;
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus, select:focus, textarea:focus {
  border-color: #8B1E1E;
  box-shadow: 0 0 8px rgba(139,30,30,0.2);
  outline: none;
}

/* =======================
   BUTTONS
======================= */
button, .lp-btn {
  width: 100%;
  background: linear-gradient(135deg,#8B1E1E,#6F1414);
  color: #fff;
  border: none;
  padding: 14px 0;
  border-radius: 14px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

button:hover, .lp-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* =======================
   LIST ITEMS
======================= */
.nc-item {
  border-bottom: 1px solid #eee;
  padding: 14px 0;
}

.nc-item small {
  color: #888;
}

/* =======================
   ERROR & SUCCESS
======================= */
.nc-error {
  color: #8B1E1E;
  margin-bottom: 12px;
}

.nc-success {
  color: #1E8B53;
  margin-bottom: 12px;
}

/* =======================
   GUEST / LANDING PAGE FORM
======================= */
.lp-form-group {
  margin-bottom: 16px;
}

.lp-form-group label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: #4A4A4A;
}

.lp-form input,
.lp-form select,
.lp-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 15px;
  margin-bottom: 12px;
}

.lp-note {
  margin-top: 12px;
  font-size: 12px;
  text-align: center;
  color: #888;
}
/* Root */
.nc-wrapper {
  padding: 16px;
  max-width: 720px;
  margin: auto;
  font-family: system-ui, sans-serif;
}

h2 {
  color: #8B1E1E;
  margin-bottom: 16px;
}

h3 {
  color: #4A4A4A;
  margin-bottom: 12px;
}

 
.nc-card button {    width: 100%;
    border-radius: 10px;
    color: #fff;}
/* Inputs */
input, textarea, select {
  width: 100%; font-family:'Poppins',sans-serif;
  padding: 14px;
  margin-bottom: 12px !important;
    border-radius: 10px !important;
    border: 1px solid #DDD !important;
  font-size: 15px;
}

/* Button */
button {
  width: 100%;
  background: linear-gradient(135deg, #8B1E1E, #6F1414);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

/* List items */
.nc-item {
  padding: 12px;
  border-bottom: 1px solid #EEE;
}

.nc-item small {
  display: block;
  color: #8A8A8A;
  margin-top: 4px;
}

/* Desktop enhancement */
@media (min-width: 768px) {
  .nc-wrapper {
    padding: 32px;
  }
}

/* =======================
   RESPONSIVE
======================= */
@media screen and (max-width: 480px) {
  .nc-wrapper {
    padding: 12px;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  button, .lp-btn {
    font-size: 15px;
    padding: 12px 0;
  }

  input, select, textarea {
    font-size: 14px;
    padding: 12px;
  }
}
