2026-08-04 03:36:02 +02:00
|
|
|
:root {
|
2026-08-05 01:10:09 +02:00
|
|
|
--primary-bg: linear-gradient(to bottom, #38bdf8, #0ea5e9);
|
|
|
|
|
--card-bg: #dae4f0;
|
|
|
|
|
--text-dark: #0f172a;
|
|
|
|
|
--text-light: #e0f2fe;
|
|
|
|
|
--accent: #0284c7;
|
2026-08-04 03:36:02 +02:00
|
|
|
}
|
|
|
|
|
|
2026-08-05 01:10:09 +02:00
|
|
|
body {
|
|
|
|
|
font-family: 'Inter', sans-serif;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
background: var(--primary-bg);
|
2026-08-04 03:36:02 +02:00
|
|
|
}
|
|
|
|
|
|
2026-08-05 01:10:09 +02:00
|
|
|
h1, h2, h3 {
|
|
|
|
|
font-weight: 900;
|
|
|
|
|
letter-spacing: 2px;
|
2026-08-04 03:36:02 +02:00
|
|
|
}
|
|
|
|
|
|
2026-08-05 01:10:09 +02:00
|
|
|
/* ✅ Consistent placeholder styling */
|
|
|
|
|
input::placeholder,
|
|
|
|
|
textarea::placeholder {
|
|
|
|
|
color: #6b7280; /* same grey as Title/Description */
|
|
|
|
|
font-family: inherit;
|
|
|
|
|
font-size: 14px;
|
2026-08-04 03:36:02 +02:00
|
|
|
}
|
2026-08-05 01:10:09 +02:00
|
|
|
|
|
|
|
|
/* ✅ Style the dropdown placeholder option */
|
|
|
|
|
select option[value=""] {
|
|
|
|
|
color: #6b7280; /* same grey */
|
|
|
|
|
font-family: inherit;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
}
|
|
|
|
|
|