@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap");

.hidden {
display: none;
}

body {
  background-image: url(./images/BACKGROUND.png);
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  font-family: Arial, sans-serif;
}

.container {
  background-color: white;
  border-radius: 20px;
  padding: 30px 40px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 550px;
  width: 100%;
  margin: 0 20px;
}

.logo {
  max-width: 45%;
  height: auto;
  margin-bottom: 20px;
}

.instrucao {
  font-size: 1.4em;
  font-weight: bold;
  color: #000000;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.exemplo {
  font-size: 0.8em;
  color: #000000;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: bold;
}

.highlight {
  background: none;
  color: orange;
  padding: 0 2px;
}

.resultado {
  color: #0096c7;
  font-weight: bold;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

input[type="text"] {
  width: 70%;
  padding: 15px;
  margin-top: 15px;
  margin-bottom: 20px;
  font-size: 1em;
  border: 1px solid #979696;
  border-radius: 25px;
  outline: none;
  text-align: center;
}

button {
  background-color: #0062cc;
  color: white;
  font-size: 1em;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 40%;
}

button:hover {
  background-color: #004aa0;
}

.checkbox-container {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9em;
  color: #555;
  margin-bottom: 20px;
}

.checkbox-container input[type="checkbox"] {
  margin-right: 8px;
  transform: scale(1.1);
  margin-bottom: 18px;
}

@media (max-width: 768px) {
  .container {
    padding: 20px;
  }

  .instrucao {
    font-size: 1em;
  }

  .exemplo {
    font-size: 0.85em;
  }

  input[type="text"],
  button {
    font-size: 0.9em;
    padding: 8px 16px;
  }

  .checkbox-container {
    font-size: 0.85em;
  }
}

@media (max-width: 480px) {
  .instrucao {
    font-size: 0.95em;
  }

  .exemplo {
    font-size: 0.8em;
  }

  input[type="text"] {
    font-size: 0.85em;
    padding: 8px;
  }

  button {
    font-size: 0.9em;
    padding: 8px 0;
  }
}

.botao-confirmar {
  background-color: #0056A4; 
  color: #fff;
  padding-right: 40px ;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.botao-confirmar:hover {
  background-color: #004080; 
}

.swal2-actions {
  justify-content: center !important;
}
