/* from: https://www.quackit.com/html/html_editors/scratchpad/?example=/css/flexbox/examples/flexbox_form_example_5 */

#myForm {     display: flex;

    flex-direction: column;
    border-radius: 3px;
    padding: 1em; }

 .row {
    display: flex;
    justify-content: center;
  }
  .column {
    display: flex;
    flex-direction: column;
    padding: 1em;
  }
  .input-group {
   	display: flex;
  }
  .input-group > label {
    margin-right: 1em; 
    padding: .5em 0;
  }
  .myForm input,
  .myForm select {
    flex: 6; 
    padding: .5em;
    margin-bottom: 1em;
  }
  .myForm button {
   padding: 1em; 
    background: gray;
    color: white;
    border: 0;
  }
  .myForm fieldset {
   	border: 0; 
  }
  .checks > label {
    display: block;
  }
  

/* static/publish.css */
body {
    background: #e91e63;
    background: linear-gradient(135deg, #f06292, #e91e63);
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

.container {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 1000px;
  text-align: center;
}

#status {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 700;
  color: #333;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

label {
  font-weight: 700;
  text-align: left;
}

input[type="text"] {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  width: 50%;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

input[type="checkbox"] {
  width: 20px;
  height: 20px;
}

.floating {
  margin-top: 20px;
}



.split {
  height: 100%;
  position: fixed;
  z-index: 1;
  top: 0;
  overflow: hidden;
}

.left {
  left: 0;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);

}

.right {
  left: 55%;
  width: 45%;

  display: flex;
  flex-direction: column;
}

.checkbox-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 15px;
}


@media screen and (orientation: portrait) {
  body {
    background: #e91e63;
  }
  .split {
    position: absolute;
    width: 100%;
    height: 50%;

  }

  .right {
  }
  .tap-btn {
  }
}
