@import url('https://fonts.googleapis.com/css2?family=B612+Mono:ital,wght@0,400;0,700;1,400;1,700&family=Satisfy&display=swap');
* {
  -webkit-tap-highlight-color: transparent; /* Safari e Chrome para iOS */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); /* Outros navegadores baseados em WebKit */
  -webkit-focus-ring-color: rgba(0, 0, 0, 0); /* Remove a borda de foco ao clicar */
  outline: none; /* Remove a borda de foco */
  /* Desativa a seleção de texto */
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;

/* Desativa o ajuste automático de texto */
text-size-adjust: 100%;
touch-action: manipulation;
touch-action: pan-x pan-y; /* Para desativar o zoom em dispositivos móveis */
-ms-content-zooming: none; /* Desativa o zoom no IE */
-ms-touch-action: none; /* Desativa o zoom no IE */
-ms-scroll-limit: none; /* Desativa os limites de rolagem no IE */
overflow: hidden
  
}

input, textarea, select {
  font-size: 16px; /* Evita o zoom automático no iPhone */
  outline: none; /* Remove a borda de foco padrão */
}

button {
  font-size: 16px; /* Garante consistência para botões também */
}

/* Caso você precise reduzir o tamanho visual do texto, pode utilizar transform */
input, textarea, select, button {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}


.tab-content.active,
.inicio-conteudo {
  padding: 0 !important;
  margin: 0 !important;
}
:-webkit-full-screen {
  width: 100%;
  height: 100%;
}
::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;  /* Remove scrollbar space */
  background: transparent !important;  /* Optional: just make scrollbar invisible */
}
iframe {
  overflow: hidden;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #ffaaff;
}


.container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    max-width: 230px;
    width: 90%;
    animation: fadeIn 0.5s ease-in-out;
    
}
form{
    width: 100%;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, -60%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}

h2{
    margin-top: -2px;
    font-weight: lighter;
    text-align: center;
    font-family: "Satisfy", cursive;
    font-size: 2.5em;
    color: rgb(255, 159, 215);
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    animation: pulseAnimation 2s infinite alternate;
  }
  
  @keyframes pulseAnimation {
    0% {
        text-shadow: 0 0 10px rgba(255, 0, 208, 0.5);
    }
    100% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.9);
    }
  }
  h2:hover{
    color: rgb(255, 159, 215);
  }

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 92%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    background:none;
    border:none;
    border-bottom:1px solid #000000;
    border-radius:0;
    box-shadow:none;
    outline:none;
    color:inherit;
}

input[type="submit"] {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    background:#ffb5ef;
    color: white;
    border:none;
    border-radius:4px;
    padding:15px;
    box-shadow:none;
    margin-top:26px;
    text-shadow:none;
    outline:none;
    font-weight: bolder;
    width: 230px; /* Defina a largura desejada */
    transition: 0.4s;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #ffb5ef;
    transition: 0.4s;
}
input[type="submit"]:active {
    background-color: #ffa4eb; /* Cor de fundo quando clicado */
    transition: background-color 0.4s; /* Transição suave para a mudança de cor */
    /* Você pode adicionar outros estilos desejados aqui */
}

/* Estilos para o checkbox personalizado */
.custom-checkbox {
    margin-top: 0px; /* Ajuste conforme necessário */
}

.custom-checkbox input[type="checkbox"] {
    display: none; /* Oculta a caixa de seleção padrão */
}

.custom-checkbox input[type="checkbox"] + label:before {
    content: ''; /* Adiciona um marcador customizado */
    display: inline-block;
    width: 20px; /* Largura do marcador */
    height: 20px; /* Altura do marcador */
    border: 1px solid #aaa; /* Cor da borda */
    background-color: #fff; /* Cor do fundo */
    margin-right: 10px; /* Espaçamento à direita do marcador */
    vertical-align: middle;
}

.custom-checkbox input[type="checkbox"]:checked + label:before {
    content: '\2713'; /* Símbolo de marca de seleção Unicode */
    text-align: center;
    line-height: 17px; /* Altura do texto para centralizar verticalmente */
    font-size: 20px; /* Tamanho da fonte do símbolo */
    color: #000000; /* Cor do símbolo quando selecionado */
    font-weight: bolder;
}

/* Estilos para a classe .lembrar */
.lembrar {
    margin-bottom: 20px;
    color: #666;
}

.lembrar input[type="checkbox"] {
    margin-right: 10px;
    transform: translateY(2px);
}
input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="password"]::placeholder {
    font-size: 14px; /* Tamanho do texto do placeholder */
}

.footer {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.forgot{
    margin-bottom: 5px; /* Margem inferior entre os links */
    display: inline-block; /* Garante que o <br> funcione corretamente */
    text-decoration: none;
    margin-left: 30px;
    width: 100%;
    color: #666;
}
.forgot:focus, :hover, :active{
    color: #000000;
}
/* Estilo do Fundo Escurecido */
/* Adicione o estilo para o modal de cookies */
.modal {
    display: none; /* Oculta o modal por padrão */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
    animation: fadeIn 0.3s ease-out; /* Animação de entrada */
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    border-radius: 5px;
    max-width: 90%;
    text-align: center;
    position: relative;
}
/* Estilo para telas menores */
@media screen and (min-width: 500px) {
    .modal-content {
        max-width: 60%;
    }
}
/* Estilo para telas menores */
@media screen and (min-width: 800px) {
    .modal-content {
        max-width: 40%;
    }
}


.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.button-container {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

button {
    background:#ffb5ef;
    color: rgb(255, 255, 255);
    padding: 10px 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 0 5px;
    transition: background-color 0.3s ease-in-out;
    font-weight: bolder;
    font-size: 13px;
}
button:hover {
    background:#ffd1f5;
    color: white;
}

/* Estilo para telas menores */
@media screen and (max-width: 600px) {
    .modal-content {
        margin: 10% auto;
        padding: 10px;
    }
}

/* Animação de entrada do modal */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Animação de saída do modal */
@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
#politica-privacidade{
    font-family: Arial, Helvetica, sans-serif;
    color: black !important;
}
#politica-privacidade:hover{
    color: black !important;
}
#politica-privacidade:focus{
    color: black !important;
}
.fadeInAnimation {
    opacity: 0;
    animation: fadeIn ease-in-out 0.5s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
#create{
    margin-top: 30px;
    text-decoration: none;
    margin-left: 70px;
    width: 100%;
    color: #666;
}
#create:hover{
    color: #000000;
}
















