  @charset "UTF-8";
        @font-face {
    font-family:'Fonte-de-Natal';
    src: url(./Great_Vibes/GreatVibes-Regular.ttf);
}
        * {
            padding: 0;
            margin: 0;
            box-sizing: border-box;
            font-family: 'Courier New', Courier, monospace;
        }

        body {
            background: url(./Imagens/background.jpg);
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            height: 100vh;
            overflow: hidden;
        }

        #login {
            background-color: rgba(0, 0, 0, 0.466);
            border-radius: 10px;
            color: white;
            width: 220px;
            height: 425px;
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            padding: 8px;
            backdrop-filter: blur(4px);
            
        }

        h1 {
            padding: 10px;
            text-align: center;
            margin-bottom: 20px;
            font-family: 'Fonte-de-Natal';
            font-size: 3em;
          
            
        }

        .campo {
            display: block;
            text-align: center;
            position: relative;
            margin-top: 20px;
        }

        .inputUser {
            border: none;
            width: 100%;
            padding: 6px;
            outline: none;
            background: none;
            border-bottom: solid 1px white;
            color: white;
          
        }

        .labelInput {
            position: absolute;
            top: 10px;
            left: 2px;
            transition: top 0.5s, color 0.3s;
            animation: blink 5s infinite; /* Animação Piscando */
        }


        input[type=submit] {
            display: block;
            background-color: rgba(0, 0, 0, 0.466);
            margin: auto;
            margin-top: 30px;
            width: 90%;
            height: 30px;
            box-shadow: 0 0 10px 0.5px rgba(255, 255, 255, 0.733);
     
            border-radius: 8px;
            color: white;
            cursor: pointer;
        }

        input[type=submit]:hover {
            box-shadow: 0 0 10px 5px rgba(255, 255, 255, 0.733);
           
        }




                                /*         ANIMAÇÕES         */ 



        /* animação piscando */

        @keyframes blink {
    0%, 50%, 100% {
        opacity: 1; 
    }
    25%, 75% {
        opacity: 0; 
    }
}


/* animação suspender label */


        .inputUser:focus ~ .labelInput,
        .inputUser:valid ~ .labelInput {
            top: -18px;
            color: dodgerblue;
            animation: none;
           
        }


/* animação neblina */

@keyframes neblina {
            0% {
                opacity: 0;
            }
            50% {
                opacity: 2;
            }
            100% {
                opacity: 0.2;
            }
        }

        .neblina {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(245, 240, 240, 0.603);
            opacity: 0.2;
            animation: neblina 10s linear infinite;
        }



        /* Animação Neve */ 

        @keyframes snow {
        0% {
          transform: translateY(-10vh) rotate(0deg);
          opacity: 0.8;
        }
        100% {
          transform: translateY(100vh) rotate(360deg);
          opacity: 0.3;
        }
      }

      .snowflake {
        position: absolute;
        top: -10px;
        width: 20px; 
        height: 20px; 
        animation: snow 5s linear infinite;
      }

      p {
        margin-top: 20px;
    text-align: center;
        font-size: 0.8em;
      }



.recuperarSenha{
    text-decoration: none;
        text-align: center;
        display: block;
        margin-top: 15px;
    color: white;
 font-size: 0.7em;
    width: 184px;
    left: 10px;
    position: relative;
    border-radius: 8px;
    padding: 3px;
    background-color: rgba(0, 0, 0, 0.466);
}

      .recuperarSenha:hover {
        box-shadow: 0 0 10px 5px rgba(255, 255, 255, 0.733);
 
      }
      span {
        animation: blink 5s infinite;
      }

#RedesSociais {
 text-align: center;
 display: block;
 margin-top: 15px;


}

.logo {

    margin: 5px;
    height: 30px;
    transition: transform 0.4s;
    cursor: pointer;
 
}

.logo:hover {
    transform: scale(1.3);
    box-shadow: 0 0 10px 5px rgba(255, 255, 255, 0.733);
    border-radius: 50%;

  
}

