body {
  font-family: "Roboto", sans-serif !important;
  height: 100vh !important;
  overflow: hidden;
}

.container-login {
  display: flex;
  flex-direction: column;
  align-items: center; /* Alinha os itens (incluindo logo) no centro */
  justify-content: center;
  height: 100vh;
  padding: 10px;
  overflow: hidden;
}

.intro_bem-vindo {
  text-align: center; /* Certificando que o texto dentro do bloco da intro esteja centralizado */
}

.logo {
  display: flex;
  justify-content: center; /* Garante que a logo dentro da div "logo" seja centralizada */
  align-items: center;
  width: 100%;
  max-width: 390px; /* Ajuste para limitar a largura da logo */
  margin: 0 auto; /* Centraliza horizontalmente */
}

.logo img {
  width: 100%; /* Garante que a imagem ocupe 100% da largura do contêiner da logo */
  max-width: 200px; /* Limita a largura máxima da imagem */
  height: auto; /* Mantém a proporção da imagem */
}

.intro_bem-vindo p {
  color: #000;
}

.bem-vindo {
  color: #6236FF;
}

.intro_login {
  justify-content: center;
  text-align: center;
}

.form-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 300px;
  text-align: center;
}

.form-group {
  width: 100%;
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  color: #aaa;
}

.form-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
  background-color: #f9f9f9;
  color: #aaa;
}

.form-group input:focus {
  border-color: #aaa;
  background-color: #fff;
  color: #000;
}

.form-group button {
  width: 100%;
  max-width: 300px;
  padding: 1px;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  background-color: #6236FF;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s;
}

.form-group button:hover {
  background-color: #6236FF;
}

.senha {
  text-decoration: underline;
  text-align: center;
  padding: 10px;
}

textarea {
  width: 100%;
  padding: 10px;
  height: 126px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
  background-color: #f9f9f9;
  color: #aaa;
}

.footer {
  width: 100%;
  color: #000;
  text-align: center;
  padding: 10px 0;
  position: fixed;
  bottom: 0;
  left: 0;
}

.rota {
  text-decoration: underline;
  color: #000;
}


.btn-login {
  text-decoration: none;
  color: #fff;
  display: block;
  width: 100%;
  height: 35px;
  text-align: center;
  padding: 10px;
}
h2 {
  font-size: 20px;
  font-weight: bold;
  color: #6236FF;
}

.iconeGrande {
  width: 80% !important;
  height: 150px;
}

.iconeComp {
  width: 50% !important;
  height: 100px;
}
.iconeCam {
  width: 50% !important;
  height: 50%;
}

/* Estilos para telas pequenas */
@media (max-width: 600px) {
  .intro_bem-vindo {
    margin-top: 0px;
  }
  h1 {
    font-size: 28px;
    font-weight: bold;
  }
  .iconeCam {
    width: 50% !important;
    height: 50%;
  }
  .form-container {
    width: 100%;
    margin-left: 0;
  }
  .footer {
    padding: 10px;
  }
  .intro_login {
    width: 100%;
    max-width: 300px;
  }
  .iconeComp {
    width: 50% !important;
    height: 100px;
  }
}

/* Estilos para telas médias */
@media (min-width: 601px) and (max-width: 1024px) {
  .form-container {
    width: 80%;
    margin-left: 10%;
  }
  .intro_login {
    width: 100%;
    max-width: 300px;
  }
  .iconeGrande {
    width: 50% !important;
    height: 100px;
  }
  .iconeComp {
    width: 50% !important;
    height: 100px;
  }
}

@media (width < 400px) {
  textarea {
    height: 50px;
  }
  .iconeGrande {
    width: 50% !important;
    height: 100px;
  }
  .iconeComp {
    width: 50% !important;
    height: 70px;
  }
  .iconeCam {
    width: 50% !important;
    height: 50%;
  }
}

select {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  box-sizing: border-box;
  color: var(--text-color);
  transition: ease-in-out 0.3s all;
}

.hidden {
  display: none;
}

.camera {
  background-color: #ddd;
  width: 250px;
  height: 250px;
  border-radius: 10px;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.camera i {
  font-size: 100px;
  color: #333;
}

.cameraMenor {
  background-color: #ddd;
  width: 80px;
  height: 80px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.cameraMenor i {
  font-size: 100px;
  color: #333;
}

.enviado {
  background-color: #29c06d !important;
}

.camera-container {
  position: fixed;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

#video {
  position: absolute;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  transform: rotate(0deg);
  transform-origin: center center;
}

.btn-tirar {
  width: 100px !important;
  height: 100px !important;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #6236FF;
  color: #fff;
  border: none;
  border-radius: 50%;
  padding: 15px 15px;
  font-size: 50px;
  cursor: pointer;
  z-index: 10;
}
.btn-tirar ion-icon {
  width: 100% !important;
  height: 100% !important;
}

.btn-tirar:hover {
  background-color: #535353;
}

.comprovante {
  width: 150% !important;
  height: auto !important;
  border-radius: 5px;
  border: 3px solid #7a7a7a;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

#loader {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;

  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}

#loader .loading-icon {
  width: 42px;
  height: auto;
  animation: loadingAnimation 0.5s ease-in-out infinite;
}

#loader.hidden {
  display: none;
}

@keyframes loadingAnimation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(180deg);
  }
}

body.animationGoBack {
  overflow: hidden;
}

body.animationGoBack .appHeader,
body.animationGoBack .appBottomMenu,
body.animationGoBack .extraHeader,
body.animationGoBack #appCapsule {
  transform: translate(100%, 0);
  transition: all 0.24s linear;
}

body.animationGoBack:after {
  content: "";
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background-size: 42px auto;
  background-position: center center;
  z-index: 9999;
  animation: animationGoBack 0.24s linear;
}

@keyframes animationGoBack {
  0% {
    left: -100%;
  }
  100% {
    left: 0;
  }
}
.appHeader {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 999;
  color: #fff;
}

.appHeader .left,
.appHeader .right {
  display: flex;
  align-items: center;
  position: absolute;
}

.appHeader .left {
  left: 2px;
  height: 40px;
  /* width: 35px; */
  top: 0;
}
.appHeader .left ion-icon {
  margin-top: 20px;
  height: 50px;
  width: 50px;
}

.appHeader .right {
  right: 10px;
  top: 0;
}

.form-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
  background-color: #f9f9f9;
  color: #aaa;
}

