:root {
  --primary: #000;
  --primary-dark: #333;
  --text: #1a1a1a;
  --border: rgba(0,0,0,0.2);
  --success: #06d6a0;
  --error: #ef233c;
}

.concentText{
    margin-left: 15px !important;
}

section.wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  margin: 3rem auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

section.left-panel {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 3rem;
  position: relative;
}

section.left-panel h1 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  position: relative;
}

section.left-panel p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  position: relative;
}

section.left-panel .locations div {
  margin-bottom: 1.25rem;
  font-size: 1rem;
  position: relative;
}

section.left-panel .locations i {
  margin-right: 0.75rem;
}

section.left-panel a {
  display: inline-block;
  margin-top: 2rem;
  color: white;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  background: rgba(255,255,255,0.15);
}

section.form-panel {
  padding: 3rem;
  background: #fff;
}

section.form-panel h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}

section.form-panel p {
  margin-bottom: 2rem;
  color: #6b7280;
}

/* Form container div for positioning */
form > div {
  position: relative;
  margin-bottom: 2rem;
}

/* Inputs and textarea styling */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 1.25rem 1rem 0.75rem;
  border: 1px solid var(--border);
  background: white;
  font-size: 1rem;
  border-radius: 0;
  outline-offset: 2px;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

/* Label styling - no class selector */
/* Labels inside any form > div */
form > div > label {
  position: absolute;
  left: 1rem;
  top: 1rem;
  background: white;
  padding: 0 0.25rem;
  font-size: 1rem;
  color: var(--text);
  transition: 0.2s ease all;
  pointer-events: none;
}

/* Floating label when input or textarea is focused or not empty */
input:focus + label,
input:not(:placeholder-shown) + label,
textarea:focus + label,
textarea:not(:placeholder-shown) + label {
  top: -0.6rem;
  left: 0.75rem;
  font-size: 0.75rem;
  color: var(--primary-dark);
}

/* Checkbox container using grid */
section.form-panel > form > .checkbox-container {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

/* Checkbox input styling */
section.form-panel > form > .checkbox-container input[type="checkbox"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  position: relative;
  cursor: pointer;
}

section.form-panel > form > .checkbox-container input[type="checkbox"]:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

section.form-panel > form > .checkbox-container input[type="checkbox"]:checked::after {
  content: '✓';
  color: white;
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Label inside checkbox container - no class selector */
section.form-panel > form > .checkbox-container label {
  font-size: 0.875rem;
  color: #6b7280;
}

section.form-panel > form > .checkbox-container label a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

/* Submit button */
button[type="submit"] {
  width: 100%;
  padding: 1rem;
  background-color: var(--primary-dark);
  color: white;
  font-size: 1rem;
  border: none;
  border-radius: 0;
  cursor: pointer;
}

button[type="submit"]:hover {
  background-color: var(--primary);
}

/* Error and success messages */
.error-msg {
  font-size: 0.75rem;
  color: var(--error);
  margin-top: 0.5rem;
}

.success-msg {
  background-color: var(--success);
  color: white;
  padding: 1rem;
  margin-top: 1.5rem;
  display: none;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  section.wrapper {
    grid-template-columns: 1fr;
  }
  section.form-panel {
    padding: 10px;
    background: #fff;
}
}
