@font-face {
    font-family: "DM Sans";
    src: url("https://iopgokphqerqsnqfkogz.supabase.co/storage/v1/object/public/lighty/fonts/DMSans-Regular.ttf")
        format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

html {
    scroll-behavior: smooth;
}

body {
  background: #f7f5f0;
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
  color: #6b6760;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  -webkit-font-smoothing: antialiased;
}

.container {
  background-color: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

h1 {
  font-size: 26px;
  color: #000;
  margin-bottom: 10px;
  margin-top: 0;
}

h3 {
  font-size: 16px;
  color: #000;
  margin-top: 25px;
}

.subtitle {
  color: #595959;
  margin-bottom: 30px;
  font-size: 14px;
}

.form-group {
  margin-bottom: 24px;
}

label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: #000;
  font-size: 14px;
}

input[type="text"],
input[type="email"],
textarea,
select {
  width: 100%;
  padding: 12px;
  border: 1px solid #d0ccc7;
  border-radius: 4px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: #6b6760;
  box-sizing: border-box;
  background-color: #fafaf9;
  transition: border-color 0.2s, background-color 0.2s;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #4a4a49;
  background-color: white;
}

textarea {
  resize: vertical;
  min-height: 120px;
  font-family: "DM Sans", sans-serif;
}

input[type="checkbox"] {
  margin-right: 10px;
  accent-color: #000;
  cursor: pointer;
}

.checkbox-group {
  margin-bottom: 20px;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  font-weight: normal;
  margin-bottom: 12px;
  color: #6b6760;
}

button {
  background-color: #000;
  color: white;
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-family: "DM Sans", sans-serif;
  cursor: pointer;
  width: 100%;
  font-weight: 500;
  transition: background-color 0.2s;
}

button:hover {
  background-color: #333;
}

button:active {
  background-color: #1a1a1a;
}

.info-box {
  background-color: #faf8f3;
  border-left: 4px solid #000;
  padding: 16px;
  margin-bottom: 24px;
  border-radius: 4px;
}

.info-box p {
  margin: 0;
  font-size: 14px;
  color: #6b6760;
}

.required {
  color: #c41e1e;
}

.success-message {
  display: none;
  background-color: #d4edda;
  color: #155724;
  padding: 16px;
  border-radius: 4px;
  margin-bottom: 20px;
  border-left: 4px solid #28a745;
  font-size: 14px;
}

.error-message {
  display: none;
  background-color: #f8d7da;
  color: #721c24;
  padding: 16px;
  border-radius: 4px;
  margin-bottom: 20px;
  border-left: 4px solid #c41e1e;
  font-size: 14px;
}

hr {
  margin-top: 40px;
  margin-bottom: 40px;
  border: none;
  border-top: 1px solid #d0ccc7;
}

.email-template {
  background-color: #faf8f3;
  padding: 16px;
  border-radius: 4px;
  font-size: 13px;
  font-family: monospace;
  margin-top: 20px;
  border: 1px solid #d0ccc7;
  color: #6b6760;
}

.email-template p {
  margin: 0 0 10px 0;
}

.email-template p:last-child {
  margin-bottom: 0;
}

.email-list {
  font-size: 14px;
  color: #6b6760;
}

.email-list ul {
  margin: 10px 0;
  padding-left: 20px;
  list-style-type: square;
}

.email-list li {
  margin: 8px 0;
}


input::placeholder {
  color: #b5aaa0;
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b6760' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
  padding-right: 36px;
}

.form-group:last-child button {
  margin-top: 10px;
}
