/* Skjul indholdet som standard */
.smk-hidden {
  display: none !important;
}

.skjulmedlogin {
	margin-top:25px;
	margin-bottom:25px;
}

.smk-placeholder {
  margin: 12px 0;
}

.smk-button {
  appearance: none;
  border: 1px solid rgba(0,0,0,.2);
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
}

/* Modal */
.smk-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;
}

.smk-modal-backdrop.smk-open {
  display: flex;
}

.smk-modal {
  width: min(520px, calc(100vw - 32px));
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}

.smk-modal h3 {
  margin: 0 0 12px 0;
  font-size: 18px;
}

.smk-modal input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,.25);
  font: inherit;
}

.smk-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 12px;
}

.smk-actions button {
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,.2);
  cursor: pointer;
  font: inherit;
}

.smk-error {
  margin-top: 10px;
  color: #b00020;
  display: none;
}
.smk-error.smk-show {
  display: block;
}
