/* ================= RESET ================= */
* {
  box-sizing: border-box;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
}

body {
  margin: 0;
  height: 100vh;
  /*background: #000;*/
  background-image: url("../images/bgchart.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}


/* ================= MAIN CARD ================= */
.split-card {
  display: flex;
  width: 900px;
  max-width: 40%;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

/* ================= LEFT FORM ================= */
.form-section {
  flex: 1;
  padding: 40px;
}

.form-section h2 {
  margin-bottom: 22px;
  font-size: 22px;
  color: #111827;
}

/* ================= FORM GRID ================= */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.input-group label {
  font-size: 13px;
  color: #374151;
  margin-bottom: 6px;
  display: block;
}

.input-group input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #d1d5db;
  font-size: 14px;
}

.input-group input:focus {
  outline: none;
  border-color: #2563eb;
}

/* ================= FULL WIDTH ================= */
.full {
  grid-column: span 2;
}

/* ================= BUTTON ================= */
button {
  padding: 12px;
  background: orange;
  border: none;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
}

button:hover {
  background: orange;
}

/* ================= LINKS ================= */
.links {
  text-align: center;
  margin-top: 14px;
}

.links a {
  font-size: 13px;
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

.links a:hover {
  text-decoration: underline;
}

/* ================= RIGHT IMAGE ================= */
/*.image-section {*/
/*  flex: 1;*/
/*  background-image: url("../images/chart.jpg");*/
/*  background-size: cover;*/
/*  background-position: center;*/
/*}*/

/* ================= CHECKBOX ================= */
.checkbox-group {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #374151;
}

.checkbox-group input {
  width: auto;
}


/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .split-card {
    flex-direction: column;
  }

  .image-section {
    height: 220px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .full {
    grid-column: span 1;
  }
}
