* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

button,
input,
select,
textarea {
  font: inherit;
}

input:not([type="checkbox"]):not([type="radio"]),
select,
textarea {
  width: 100%;
  min-height: 40px;
  border: 0;
  border-radius: 5px;
  padding: 10px;
  color: #1a1a1a;
  background: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

input:focus:not([type="checkbox"]):not([type="radio"]),
select:focus,
textarea:focus {
  outline: 2px solid rgba(255, 61, 16, 0.28);
}

input[type="checkbox"],
input[type="radio"] {
  width: 18px;
  height: 18px;
  min-height: 0;
  accent-color: var(--orange);
}

button {
  border: 0;
  border-radius: 5px;
  padding: 12px 18px;
  background: var(--orange);
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
}

button:hover {
  background: var(--orange-dark);
}

label {
  display: grid;
  align-content: start;
  gap: 9px;
  color: var(--purple);
  font-size: 0.86rem;
  font-weight: 700;
}

.hidden,
.module-panel.hidden {
  display: none !important;
}

.page {
  min-height: 100vh;
}
