body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: clamp("1rem, 0.9rem + 0.5vw, 1.25rem");
  line-height: 1.6;
  font-weight: 400;
  color: white;
  background-color: white;
  margin: 0;
  padding: clamp("20px, 5%, 50px");
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Horizontal */
  align-items: center;
  /* Vertical */ }

form {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  margin: auto; }
  form #id_image {
    position: relative;
    right: 19%; }
  form button, form select, form input {
    background-color: #5d1434;
    color: white;
    padding: 10px 15px;
    border: 1px solid white;
    margin-bottom: 10px;
    width: 100%;
    min-width: 0; }
    form button:hover, form select:hover, form input:hover {
      background-color: #e51b75; }
  form table {
    width: 100%;
    border-collapse: collapse; }
    form table td, form table th {
      padding: 10px;
      font-size: inherit;
      text-align: left; }

.bold-select-box option:checked {
  font-weight: bold; }

.bold-select-box option[value="1"] {
  font-weight: bold; }

.bold-select-box option[value="2"] {
  font-weight: bold; }

@media (max-width: 1280px) {
  form {
    font-size: 0.9rem;
    max-width: 90%; }
    form table td, form table th {
      padding: 8px;
      font-size: 0.9rem; } }

@media (max-width: 600px) {
  form {
    max-width: 90%;
    font-size: 0.7rem; }
    form table td, form table th {
      padding: 5px;
      font-size: 0.7rem; } }

@media (max-width: 300px) {
  form {
    font-size: 0.6rem;
    max-width: 100%; }
    form table td, form table th {
      padding: 3px;
      font-size: 0.6rem; } }

/*# sourceMappingURL=main.css.map */