body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  font-family: "Jost", sans-serif;
  background: linear-gradient(to bottom, #13255b, #243a7c, #13255b);
}
.main-login {
  width: 350px;
  height: 400px;
  background: rgb(255, 255, 255);
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 5px 20px 50px #000;
}
.main-home {
  width: 80%;
  height: 800px;
  background: rgb(255, 255, 255);
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 5px 20px 50px #000;
  padding: 10px;
  overflow-y: auto;
}
.signup {
  position: relative;
  width: 100%;
  height: 100%;
}
label {
  color: #000000;
  font-size: 2.3em;
  justify-content: center;
  display: flex;
  margin: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.5s ease-in-out;
}
input {
  width: 60%;
  height: 20px;
  background: #ffffff;
  justify-content: center;
  display: flex;
  margin: 20px auto;
  padding: 10px;
  outline: none;
  border-radius: 5px;
  margin-bottom: 0px;
  margin-top: 5px;
}
button {
  width: 60%;
  height: 40px;
  margin: 10px auto;
  justify-content: center;
  display: block;
  color: #fff;
  background: #13255b;
  font-size: 1em;
  font-weight: bold;
  margin-top: 5px;
  outline: none;
  border: none;
  border-radius: 5px;
  transition: 0.2s ease-in;
  cursor: pointer;
}
button:hover {
  background: #243a7c;
}

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  position: relative;
  margin-left: 5px;
  margin-right: 5px;
}

.alert-war {
  color: #000;
  background-color: #ffff00;
  border-color: #000;
  border-width: 2px;
}

.alert-sus {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

.alert-error {
  color: #ffffff;
  background-color: #ad0c00;
  border-color: #ad0c00;
}

#div_home_password {
  display: flex;
  align-items: center;
  justify-content: center;
}

#div_home_password .div_pass_green {
  padding: 15px;
  border: 1px solid transparent;
  border-radius: 4px;
  margin-left: 5px;
  margin-right: 5px;
  width: 300px;
  color: #dddddd;
  background-color: #008f2b;
  border-color: #008f2b;
  text-align: center;
}

.alert strong {
  font-weight: bold;
}

#description_page {
  text-align: center;
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

th,
td {
  padding: 8px;
  border: 1px solid #ddd;
  font-size: 16px;
}

tr:nth-child(even) {
  background-color: #f2f2f2;
}

.btn-logout {
  display: inline-block;
  padding: 10px 20px;
  background-color: #f44336; /* Vermelho */
  color: #ffffff; /* Branco */
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s, transform 0.2s;
}

.btn-logout:hover,
.btn-logout:focus {
  background-color: #c53727; /* Um vermelho mais escuro */
  transform: translateY(-2px); /* Efeito de elevação */
  cursor: pointer;
}

.btn-logout:active {
  background-color: #a12f23; /* Ainda mais escuro */
  transform: translateY(1px); /* Efeito de pressionado */
}

.btn-info {
  display: inline-block;
  padding: 10px 20px;
  background-color: #13255b; /* Vermelho */
  color: #ffffff; /* Branco */
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s, transform 0.2s;
}

.btn-info:hover,
.btn-info:focus {
  background-color: #13255b; /* Um vermelho mais escuro */
  transform: translateY(-2px); /* Efeito de elevação */
  cursor: pointer;
}

.btn-info:active {
  background-color: #13255b; /* Ainda mais escuro */
  transform: translateY(1px); /* Efeito de pressionado */
}

.date_pass {
  text-align: center;
  margin-bottom: 0px;
  font-weight: bold;
}

#date_search {
  width: 100px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #ffff00;
  margin: 15% auto;
  padding: 20px;
  border: 3px solid #000000;
  width: 50%;
  text-align: center;
}

.payment-details {
  display: flex;
  justify-content: space-around;
  margin: 20px;
}

.pix, .boleto {
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 10px;
  width: 40%;
}

h2 {
  color: #333;
  text-align: center;
}

.boleto p {
  text-align: center;
}

.pix p {
  text-align: center;
  word-wrap: break-word;
}

.boleto a {
  text-align: center;
  display: block;
}

.qrcode, .barcode {
  display: block;
  margin: 20px auto;
  width: 200px; /* Ajuste a largura conforme necessário */
  height: auto;
}

.value, .barcode-number {
  text-align: center;
  margin-top: 20px;
  font-size: 18px;
  font-weight: bold;
}

.barcode-number {
  word-break: break-all;
}

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.loading-spinner {
  border: 4px solid rgba(0, 0, 0, .1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border-left-color: #09f;
  animation: spin 1s infinite linear;
}

@keyframes spin {
  0% {
      transform: rotate(0deg);
  }

  100% {
      transform: rotate(360deg);
  }
}