@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Gothic+A1:wght@100;200;300;400;500;600;700;800;900&family=Irish+Grover&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    
}
::-webkit-scrollbar{
    width: 12px;
  
  }
  ::-webkit-scrollbar-thumb{
    background-color: #3d6d40;
    border-radius: 7px;
  }
  
html{
    font-family: Arial, Helvetica, sans-serif;
    padding: 6%;
    background-size: cover;
 background-attachment: fixed;
 width: 100%;

}
body{
    justify-content: center;
    display: flex;
}
.login{
   
    width: 100%;
    color: rgb(54, 25, 25);
    display: flex;
    flex-direction: column;
    
    align-items: center;
    justify-content: center;
}
video{
    width: 100%; /* LARGURA */
    height: 100%; /* ALTURA */
    position: fixed; /* POSICIONAR O ITEM NUMA POSIÇÃO EXATA QUE EU DESEJAR */
    top: 0;
    left: 0;
    z-index: -1; /* DEFINE QUEM FICA NA FRENTE DE QUEM */
    object-fit: cover;/* FAZ COM QUE O VIDEO CUBRA TODA A TELA  */
    filter: brightness(60%);
}
.Prt-esque img{
    
    width:30rem;

    transition: transform 0.4s ease-in-out;
    animation: fadeIn 1.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
div.--linha{
    width:90%;
    height: 2px;
    background-color: rgb(238, 200, 156);
    margin-top: 30px;
    border-radius: 30px;
}
@media screen and (max-width: 840px) {
    .Prt-esque img{
    
        width:30rem;
        margin-top: 45rem;
    
    }
}