/* =========================
   ESTILO DO PORTAL
   ========================= */

body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Vídeo de fundo */
#video-bg {
    position: fixed;       /* fixa o vídeo no fundo */
    top: 0;
    left: 0;
    width: 100%;           /* largura da tela */
    height: 100%;          /* altura da tela */
    object-fit: cover;     /* cobre toda a tela, pode cortar bordas */
    z-index: -1;           /* fica atrás do conteúdo */
    filter: brightness(0.5) blur(2px); /* deixa mais escuro / suave */
}
}

/* Logo */
.logo-container {
    width: 100%;
    text-align: center;
    margin-top: 2px;
    margin-bottom: 2px;
}

.logo {
    max-width: 200px;
    width: 80%;
    height: auto;
    border-radius: 10px;
}

/* Container do formulário */
.container {
    width: 90%;
    max-width: 420px;
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

h2 {
    text-align: center;
    margin-bottom: 5px;
}

/* Campos do formulário */
input {
    width: 100%;
    padding: 12px;
    margin-top: 6px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
}

button {
    width: 100%;
    padding: 12px;
    background: #3b82f6;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background: #2563eb;
}

/* Mensagem de feedback */
#msg {
    margin-top: 10px;
    text-align: center;
    font-weight: bold;
}

/* =========================
   RODAPÉ
   ========================= */
.footer {
    width: 100%;
    text-align: center;
    margin-top: 0px;
    padding: 15px 0;
}

.footer .socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 0px;
}

.social-icon {
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: scale(1.2);
}

/* Informações do desenvolvedor */
.developer-info {
    font-size: 14px;
    color: #ffffff;  /* branco puro, legível em fundo escuro */
    line-height: 1.5;
    text-align: center;
}

.developer-info a {
    color: #00ffff;  /* azul ciano, muito visível sobre fundo escuro */
    text-decoration: none;
}

.developer-info a:hover {
    text-decoration: underline;
}

/* Mensagem de Rede Social */	
.social-msg {
    text-align: center;
    font-size: 16px;
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7); /* sombra preta por trás do texto */
}
/* Responsivo para mobile */
@media (max-width: 480px) {
    .social-icon {
        width: 30px;
        height: 30px;
    }
    .developer-info {
        font-size: 12px;
    }
