/* Estilo global */
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(45deg, #009c3d, #ffcc29);
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

/* Título principal */
h1 {
    font-size: 3rem;
    position: absolute;
    top: 20%;
    z-index: 10;
}

/* Botões principais */
.button {
    background: #006400;
    color: #fff;
    padding: 15px 30px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.button:hover {
    background: #ffcc29;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
}

.button:active {
    background: #ffdd44;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.9);
}

/* Popups de Login e Cadastro */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    width: 400px;
    text-align: center;
    position: relative;
}

/* Inputs dos Popups */
.popup input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

/* Botões dentro dos Popups */
.popup button {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.popup button:hover {
    background-color: #218838;
}

/* Botão de fechar popups */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
    color: black;
}

/* Mensagens de erro e sucesso */
.error-message {
    color: red;
    font-size: 14px;
}

.success-message {
    color: green;
    font-size: 14px;
}




       

        .button {
            background: #006400;
            color: #fff;
            padding: 15px 30px;
            font-size: 18px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: 0.3s;
            margin: 20px;
        }

        .button:hover {
            background: #ffcc29;
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
        }

        .button:active {
            background: #ffdd44;
            box-shadow: 0 0 25px rgba(255, 255, 255, 0.9);
        }

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

        .video-card {
            background-color: #333;
            margin: 10px;
            padding: 20px;
            border-radius: 8px;
            width: 300px;
            transition: transform 0.3s;
            text-align: left;
        }

        .video-card:hover {
            transform: scale(1.05);
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
        }

        .video-card img {
            width: 100%;
            border-radius: 8px;
        }

        .video-card h3 {
            margin: 10px 0;
        }

        .video-card p {
            font-size: 14px;
        }

        .video-card button {
            background-color: #28a745;
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            border: none;
            cursor: pointer;
            margin-top: 10px;
        }

        .video-card button:hover {
            background-color: #218838;
        }





.button_login {
    background-color: #1e90ff;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
}

.button_login:hover {
    background-color: #3498db;
}

    
button.logout {  
    background: red;  
}  

button.logout:hover {  
    background: darkred;  
}  


/* Estilizando o footer */  
.footer {  
    position: fixed; /* Fixar o footer na parte inferior */  
    bottom: 0; /* Posicionar no fundo da página */  
    left: 0; /* Começar no lado esquerdo */  
    width: 100%; /* Largura total da página */  
    z-index: 5; /* Z-index para garantir que fique acima de outros elementos */  
    background: linear-gradient(to right, 
        rgba(76, 175, 80, 0.9),   /* Verde com opacidade */
        rgba(255, 255, 255, 0.9), /* Branco com opacidade */
        rgba(255, 235, 59, 0.9));  /* Amarelo com opacidade */
    color: rgba(15, 76, 129); /* Texto Azul Anil */ 
    text-align: center; /* Centralizar o conteúdo do footer */  
    padding: 10px 0; /* Espaçamento superior e inferior */  
}  

/* Para garantir que a área do conteúdo não fique escondida pelo footer */  
.content {  
    padding-bottom: 60px; /* Ajustar de acordo com a altura do footer */  
}  
