@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;
    
}

html{
    font-family: Arial, Helvetica, sans-serif;
    
    background-size: cover;
 background-attachment: fixed;

}
::-webkit-scrollbar{
    width: 12px;
  
  }
  ::-webkit-scrollbar-thumb{
    background-color: #3d6d40;
    border-radius: 7px;
  }
  
.login{
   
    width: 100%;
    color: white;
    display: flex;
    justify-content: space-between;
    height: 100vh;
    align-items: 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%);
}
div.linhalogin{
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 40rem;
    align-items: center;
    justify-content: space-evenly;
}

.Prt-esque img{
    width: 50vh;
    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);
    }
}
@media(max-width: 1000px) {
    div.linhalogin{
        width: 100%;
        display: flex;
    flex-direction: column;
    }

    .Prt-esque{
        margin-left: -50px;

}
.Prt-esque img{
    width: 30vh;
    margin-top: 100px;
}

}