/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
@font-face {
  font-family: "Poppins";
  src: url(/assets/desktop/fonts/Poppins-Bold-542ca15de37ab3bcf41f3ee5fdb9a8a4ba3346a27998196101a9a01a0f4ce0d8.ttf) format("truetype");
  font-weight: bold; /* atau 700 */
  font-style: normal;
}
@font-face {
  font-family: "GochiHand";
  src: url(/assets/desktop/fonts/GochiHand-Regular-e51fa50a173c6b2cc295348c9ba7da47cdeca4d7a1272624e5f8e25afe78e663.ttf) format("truetype");
  font-weight: bold; /* atau 700 */
  font-style: normal;
}
@font-face {
  font-family: "CabinSketch";
  src: url(/assets/desktop/fonts/CabinSketch-Bold-d6087ae98d0185f3787c63ab1818cce9e670e1716a69c162b12ddcfe78b67f29.ttf) format("truetype");
  font-weight: bold; /* atau 700 */
  font-style: normal;
}
body {
  font-family: "CabinSketch";
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(/assets/desktop/grafis/desktop-bg-0015f2516db1a8717e40d20e937cc16bb9040354ad2e650ecc5a9a5a3364a9c1.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 100vh;
  padding: 0;
  margin: 0;
}

.form-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url(/assets/desktop/grafis/form-box-6e4e9653c9765c3f5c8815e7e277f55ef11f46395608c5a6976a07084edb4ac3.png);
  background-repeat: no-repeat;
  background-position: center center;
  height: 90vh;
  max-width: 360px;
  padding: 20px 60px;
  text-align: center;
}
img {
  width: 70%;
}
p {
  color: #646464;
}
.form {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.form label {
  display: none;
}
input[type="text"],
input[type="number"],
select,
input:focus,
input:active,
input:valid,
input:not(:placeholder-shown) {
  font-family: "CabinSketch";
  margin: 5px 0px;
  padding: 5px 15px;
  padding-bottom: 10px;
  height: 30px;
  box-sizing: content-box;
  font-size: 16px;
  outline: none;
  border: none;
  background-image: url(/assets/desktop/grafis/input-line-18075c71ecbb668517d43b04a9ee8bcf21c2348755a29c7261b4d61aee97c4b0.png);
  background-size: cover;
  background-position: bottom center;
  background-size: 100%;
  background-repeat: no-repeat;
}
input[type="submit"] {
  margin: 10px 0px;
  padding: 5px;
  height: 40px;
  width: 100%;
  border: none;
  background-image: url(/assets/desktop/grafis/button-connect-0a3ecf15dd492e806a1a4f90228ad6b5e4c0c06ec6998bc51be091ab896c7e8a.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: transparent;
  cursor: pointer;
  font-size: 18px;
  font-family: "CabinSketch";
}
input[disabled] {
  background-color: #fff;
  opacity: 0.2;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.footer-desktop p {
  font-family: "GochiHand";
  font-size: 12px;
  color: #646464;
}
.header-mobile,
.footer-mobile {
  display: none;
}
.alert {
  font-size: 12px;
}
.alert-success {
  color: green;
}
.alert-danger {
  color: red;
}
@media (max-width: 720px) {
  .header-mobile,
  .footer-mobile {
    display: block;
  }
  .header-desktop,
  .footer-desktop {
    display: none;
  }
  body {
    background-image: url(/assets/mobile/grafis/mobile-bg-f9df0a4b0f071b7a92c74cbcd3cbefb55728a8f4f68d78c4828a82c310c66907.png);
  }
  .guest-badge {
    background-color: #fff;
    width: fit-content;
    padding: 5px 20px;
    border-radius: 10px;
  }
  .header-mobile {
    text-align: left;
    width: 100%;
  }
  h1 {
    text-align: left;
    color: #fff;
    font-size: 28px;
  }
  .header-mobile p {
    color: #fff;
  }
  .form-box {
    background-image: none;
    padding: 20px 15px;
    justify-content: end;
  }
  .form {
    text-align: left;
  }
  .form label {
    display: block;
    font-size: 12px;
    color: #fff;
  }
  input[type="text"],
  input[type="number"],
  select,
  input:focus,
  input:active,
  input:valid,
  input:not(:placeholder-shown) {
    background-image: none;
    border-radius: 10px;
    padding: 10px 15px;
    margin-bottom: 10px;
  }
  input[type="submit"] {
    box-sizing: border-box !important;
    background-image: none;
    background-color: rgb(68, 157, 68);
    border-radius: 10px;
    color: #fff;
  }
  input[disabled] {
    background-color: #fff;
    opacity: 0.5;
  }
  .footer-mobile {
    bottom: 0px;
    width: 100%;
  }
  .footer-mobile img {
    width: 60%;
  }
  .footer-mobile p {
    font-family: "CabinSketch";
    color: #000;
  }
}
