body, html{
	margin: 0px;
	width: 100%;
	height: 100%;
	overflow: hidden;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: row;
  background: linear-gradient(90deg, #e3ffe7 0%, #d9e7ff 100%);
}

.mainContainer{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.controlsContainer{
  box-sizing: border-box;
  background-color: rgb(255, 221, 255);
  margin-top: 10px;
  padding: 30px;
  padding-top: 15px;
  padding-bottom: 15px;
  border-radius: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: right;
}

.inputContainer{
  display: flex;
  padding-bottom: 10px;
  justify-content: space-between;
  font-family: 'DM Sans', sans-serif;
}

.inputLabel {
  padding: 10px;
  font-weight: bold;
  color: rgb(26, 20, 20);
  font-size: 15px;
}

input[type=text] {
  padding:10px;
  border:0;
  box-shadow:0 0 15px 4px rgba(0,0,0,0.06);
  width:50%;
}

input[type=text]:hover {
  background-color: #fafafa;
}

.buttonContainer{
  display: flex;
  margin-top: 5px;
}

.button-19 {
  appearance: button;
  background-color: #1899D6;
  border: solid transparent;
  border-radius: 16px;
  border-width: 0 0 4px;
  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
  font-family: din-round,sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .8px;
  line-height: 20px;
  margin: 0;
  outline: none;
  overflow: visible;
  padding: 13px 16px;
  text-align: center;
  text-transform: uppercase;
  touch-action: manipulation;
  transform: translateZ(0);
  transition: filter .2s;
  user-select: none;
  -webkit-user-select: none;
  vertical-align: middle;
  white-space: nowrap;
  width: 100%;
}

.button-19:after {
  background-clip: padding-box;
  background-color: #1CB0F6;
  border: solid transparent;
  border-radius: 16px;
  border-width: 0 0 4px;
  bottom: -4px;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.button-19:main,
.button-19:focus {
  user-select: auto;
}

.button-19:hover:not(:disabled) {
  filter: brightness(1.1);
  -webkit-filter: brightness(1.1);
}

.button-19:disabled {
  cursor: auto;
}

.bookletContainerDiv{
  display: flex;
  width: 879px;
  height: 675px;
  background-image: url('passport\ stamp\ book.png');
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
  justify-content: right;
}

#stampDiv{
  padding: 10px;
  width: 420px;
  height: 615px;
  overflow: clip;
  margin-right: 2px;
  margin-top: 10px;
}

.stampEffectClass{
  -webkit-mask-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/8399/grunge.png');
  -webkit-mask-size: 1000px 1000px;
  mix-blend-mode: multiply;
}

.isolate {
  -webkit-mask-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/8399/grunge.png');
  -webkit-mask-size: 944px 604px;
  isolation: isolate;
} /* Without isolation, the background color will be taken into account */

.stamp {
    transform: rotate(12deg);
    color: #555;
    font-size: 3rem;
    font-weight: 700;
    border: 0.25rem solid #555;
    display: inline-block;
    padding: 0.25rem 1rem;
    text-transform: uppercase;
    border-radius: 1rem;
    font-family: 'Courier';
    -webkit-mask-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/8399/grunge.png');
    -webkit-mask-size: 944px 604px;
    mix-blend-mode: multiply;
  }
  
.is-nope {
    color: #D23;
    border: 0.5rem double #D23;
    transform: rotate(3deg);
      -webkit-mask-position: 2rem 3rem;
    font-size: 2rem;  
  }
  
.is-approved {
      color: #0A9928;
      border: 0.5rem dashed #0A9928;
      -webkit-mask-position: 13rem 6rem;
      transform: rotate(-14deg);
    border-radius: 0;
  } 
  
.is-draft {
      color: #C4C4C4;
      border: 1rem double #C4C4C4;
      transform: rotate(-5deg);
    font-size: 6rem;
    font-family: "Open sans", Helvetica, Arial, sans-serif;
    border-radius: 0;
    padding: 0.5rem;
  } 