:root .modal {
  --bs-modal-width:800px;
}

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

body {
  max-width: 100vw;
  height: 100vh;
  background-image: url("../imagens/offshore.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

nav {
  background-color: white;
}

main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: rgba(0, 0, 0, 0.55);
}

section#home {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 5px;
  min-height: calc(100vh - 86px);
  max-width: 90vw;
  margin: 0 auto;
}

#home .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#home h3 {
  font-size: 1.3em;
  color: white;
  margin-bottom: 25px;
  text-align: center;
}

#home .field {
  display: flex;
  flex-direction: row;
}

#home input#codigo {
  display: block;
  width: 400px;
  height: 50px;
  padding: 10px;
  margin-right: 0px;
  box-shadow: none !important;
  outline: none !important;
}
@media only screen and (max-width: 510px) {
  #home input#codigo {
    width: 250px;
  }
}

#home button#codigoSubmit {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #004778;
  width: 50px;
  height: 50px;
  border: 1px solid #004778;
  box-shadow: none !important;
  outline: none !important;
}

.maquina-midia-title {
  font-size: 18px;
  padding: 10px 25px;
}

.navbar-login {
  display: flex;
  flex: 1;
  justify-content: flex-end;
}
@media only screen and (max-width: 510px) {
  .navbar-login {
    justify-content: flex-start;
  }
}

.login {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  font-size: 14px;
}

.rounded-login {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: #f0f0f0;
  color: black;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 50%;
  overflow: hidden;
}

.toast {
  position: fixed;
  top: 0;
  display: flex;
  z-index: 9999;
  min-width: 100%;
  padding: 10px;
  justify-content: center;
}

video.video {
  width: 450px;
  height: auto;
  margin: 0 auto;
  display: block;
}
@media only screen and (max-width: 510px) {
  video.video {
    width: 100%;
  }
}

form[form-submiting=true] button,
form[form-submiting=true] textarea,
form[form-submiting=true] input,
form[form-submiting=true] select {
  pointer-events: none;
}

#replicaModal .pages .page {
  display: none;
}
#replicaModal .pages .page .grid {
  display: grid;
  grid-template-columns: auto auto auto auto;
  gap: 5px;
}
#replicaModal .pages[data-page="1"] .page1 {
  display: block;
}
#replicaModal .pages[data-page="2"] .page2 {
  display: block;
}/*# sourceMappingURL=index.css.map */