* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100vw;
  height: 100vh;
  display: grid;
  place-items: center;
  font-family: "Poppins", sans-serif;
  line-height: 1.5;
  background: #1d1934;
  color: #1d1934;
  padding: 1.5rem;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.worklet-canvas {
  --fluid-pattern-seed: 123456;
  --fluid-pattern-bg-color: #1d1934;
  --fluid-pattern-color-1: #ffd53d;
  --fluid-pattern-color-2: #f0f1ff;
  --fluid-pattern-color-3: #f25c54;
  --fluid-pattern-color-4: #48cb8a;

  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background-image: paint(fluidPattern);
}

.prompt {
  position: relative;
  padding: 1.5rem;
  background: hsla(0, 100%, 100%, 0.75);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  backdrop-filter: blur(16px) saturate(180%);
  box-shadow: 0px 4px 16px 0px hsla(0, 0%, 0%, 0.125);
  border-radius: 1rem;
  z-index: 1;
  border: 1px solid hsla(0, 0%, 100%, 0.9);
  max-width: 40rem;
  text-align: center;
}

.prompt-2 {
  display: none;
  position: relative;
  padding: 1.5rem;
  background: hsla(0, 100%, 100%, 0.75);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  backdrop-filter: blur(16px) saturate(180%);
  box-shadow: 0px 4px 16px 0px hsla(0, 0%, 0%, 0.125);
  border-radius: 1rem;
  z-index: 1;
  border: 1px solid hsla(0, 0%, 100%, 0.9);
  max-width: 40rem;
  text-align: center;
}

.prompt-3 {
  display: none;
  position: relative;
  padding: 1.5rem;
  background: hsla(0, 100%, 100%, 0.75);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  backdrop-filter: blur(16px) saturate(180%);
  box-shadow: 0px 4px 16px 0px hsla(0, 0%, 0%, 0.125);
  border-radius: 1rem;
  z-index: 1;
  border: 1px solid hsla(0, 0%, 100%, 0.9);
  max-width: 40rem;
  text-align: center;
}

.prompt p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}
.prompt-2 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}
.prompt-3 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}
.prompt__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1rem;
}

.prompt__button {
  width: 100%;
  display: block;
  height: 2.95rem;
  line-height: 2.95rem;
  background: #25853ede;
  color: #fff;
  border: 0;
  font-weight: 600;
  border-radius: 0.5rem;
  font-family: inherit;
  cursor: pointer;
  font-size: 1.075rem;
  text-decoration: none;
}

.prompt__button2 {
  width: 100%;
  display: block;
  height: 2.95rem;
  line-height: 2.95rem;
  background: #25853ede;
  color: #fff;
  border: 0;
  font-weight: 600;
  border-radius: 0.5rem;
  font-family: inherit;
  cursor: pointer;
  font-size: 1.075rem;
  text-decoration: none;
}

.prompt__button3 {
  width: 100%;
  display: block;
  height: 2.95rem;
  line-height: 2.95rem;
  background: #25853ede;
  color: #fff;
  border: 0;
  font-weight: 600;
  border-radius: 0.5rem;
  font-family: inherit;
  cursor: pointer;
  font-size: 1.075rem;
  text-decoration: none;
}

@media only screen and (max-width: 480px) {
  .prompt__buttons {
    grid-template-columns: 1fr;
  }
}



#PINform input:focus,
#PINform select:focus,
#PINform textarea:focus,
#PINform button:focus {
  outline: none;
}


#PINbox {
  margin: 2.5%;
  width: 92%;
  font-size: 2.35em;
  text-align: center;
  border: 1px solid #d5d5d5;
}

.PINbutton {
  color: #1d1934;
  border: none;
  background: linear-gradient(to bottom, #fafafa, #eaeaea);
      -webkit-box-shadow: 0px 2px 2px -0px rgba(0,0,0,0.3);
         -moz-box-shadow: 0px 2px 2px -0px rgba(0,0,0,0.3);
              box-shadow: 0px 2px 2px -0px rgba(0,0,0,0.3);
  border-radius: 50%;
  font-size: 1.9em;
  text-align: center;
  width: 60px;
  height: 60px;
  margin: 7px 19px;
}

.clear,
.enter {
  font-size: 1em;
}

.PINbutton:hover {
  box-shadow: #506CE8 0 0 1px 1px;
}

.clear:hover {
  box-shadow: red 0 0 1px 1px;
}

.enter:hover {
  box-shadow: green 0 0 1px 1px;
}

.shadow {
  -webkit-box-shadow: 0px 5px 5px -0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 5px 5px -0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 5px 5px -0px rgba(0, 0, 0, 0.3);
}