@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Playfair+Display:ital,wght@1,400..900&display=swap');

body {
  font-family: 'Playfair Display', serif;
}
.lobster-regular {
  font-family: "Lobster", sans-serif;
  font-weight: 400;
  font-style: normal;
}



:root {
    --branco: #181205;
    --cor-de-fundo: #E5E0D8;
    --fundo-senha: #E5ADA8;
    --fundo-texto: #E5ADA8;
    --borda: #725C3F;
    --roboto: 'Playfair Display', serif;
    --roboto-mono: 'Lobster', sans-serif;
}


* {
    font-weight: 900;
}

body {
    color: var(--branco);
    background-color: var(--cor-de-fundo);
    font-family: var(--roboto);
}

.titulo-principal {
    font-family: var(--roboto-mono);
    font-size: 32px;
}

.minha-img {
  width: 70px !important;
  height: 70px !important;
  object-fit: cover;
  display: inline-block;
}

.titulo-secundario {
    font-size: 24px;
}

.conteudo-titulo {
    text-align: center;
    margin-top: 80px;

}

.conteudo-senha {
    margin-top: 80px;
    background: var(--fundo-senha);
    padding: 24px;
    border-bottom: 6px solid var(--borda);
      border-radius: 20px;
}

#campo-senha {
    background-color: var(--fundo-senha);
    border: none;
    color: var(--branco);
    font-family: var(--roboto);
    font-size: 40px;
    width: 70%;
    border-radius: 20px;
}

#campo-senha:focus {
    outline: none;

}

.conteudo {
    max-width: 1200px;
    margin: 0 auto;
}

.parametro {
    background-color: var(--fundo-texto);
    border: 2px solid var(--borda);
    margin-top: 32px;
    padding: 24px;
      border-radius: 20px;
}

.parametro-titulo {
    font-family: var(--roboto-mono);
    font-size: 28px;
}

.parametro-senha__titulo {
    font-size: 24px;
}

.parametro-coluna__senha {
    display: flex;
    flex-direction: column;
    justify-content: center;
      border-radius: 20px;
}

.parametro-senha {
    width: 50%;
    margin: 0 auto;
      border-radius: 20px;
}

.parametro-senha-botoes {
    display: flex;
    justify-content: center;
      border-radius: 20px;
}

.parametro-senha__botao {
    background-color: var(--fundo-texto);
    color: var(--branco);
    border: 2px solid var(--borda);
    padding: 24px;
    font-size: 24px;
    cursor: pointer;
      border-radius: 20px;
}

.parametro-senha__texto {
    padding: 24px;
    border-top: 2px solid var(--borda);
    border-bottom: 2px solid var(--borda);
    margin: 0;
    font-size: 24px;
    border-radius: 20px;
}

label {
    font-size: 20px;
}

.checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.barra {
    background-color: #947677;
    height: 30px;
    width: 100%;
    border-radius: 20px;
}

.forca {
    height: 30px;
    position: relative;
    bottom: 30px;
    border-radius: 20px;
}

.fraca {
    width: 25%;
    background-color: #C74E51;
}

.media {
    background-color: #FBDE9C;
    width: 50%;
}

.forte {
    background-color: #abc15b;
    width: 100%;
}

.parametro-senha-textos {
    display: flex;
    justify-content: space-between;
}


@media screen and (min-width: 768px) {
    .parametro-coluna__senha {
        flex-direction: row;
    }
}

.flor {
  position: absolute;
  width: 30px;
  height: 30px;
  background-image: url('flor.png'); /* coloque o caminho da sua flor aqui */
  background-size: cover;
  animation: cair 5s linear infinite;
}

@keyframes cair {
  0% {
    transform: translateY(-100px) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0;
  }
}


footer {
  background-color: #D0A77B;
  color: white;
  padding: 40px;
  margin-top: 50px; 
} 

footer {
  background-color: #D0A77B;
  color: white;
  padding: 40px;
  text-align: center;
  font-size: 1rem;
  border-radius: 20px;  
  position: relative;   
  overflow: hidden;     
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 30%, transparent);
  animation: rotateShapes 20s infinite linear; /* Animação */
  z-index: -1; /* Coloca o fundo abaixo do conteúdo */
}

/* Animação das formas no fundo */
@keyframes rotateShapes {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

footer::before {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 30%, transparent);
  animation: rotateShapes 20s infinite linear;  /* Animação contínua das formas girando */
}

footer p {
  font-size: 1rem;
  font-weight: bold;
  z-index: 1; 
}

@media (max-width: 768px) {
  footer {
    padding: 20px;
  }
}