/* Wrapper geral com borda preta e fundo */
.site-wrapper {
    background-color: #0F0F0F;
    border: 1px solid #151515;
    padding: 4px;
    max-width: 980px;
    margin: 0 auto;
}

/* Container principal */
.container-site {
    max-width: 980px;
    margin: 0 auto;
    padding: 0;
}

.banner-header {
    display: block;
    margin: 60px auto 10px auto; /* margin-top, margin-bottom centralizado */
    padding: 2;
    background: none;
    border: none;
    max-height: 100px; /* opcional, caso queira limitar */
}

/* Navbar */
.navbar {
    background-color: #121212;
    border-bottom: 1px solid #1e4d7b;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.navbar a {
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    color: #FFF;
    padding: 12px 16px;
    display: inline-block;
    text-shadow: 1px 1px 1px #000;
    transition: color 0.2s ease;
    border-right: 1px solid #1a1a1a;
}

.navbar a:last-child {
    border-right: none;
}

.navbar a:hover {
    color: #3399FF;
}

/* Box */
.box {
    background-color: #0F0F0F;
    margin-bottom: 6px;
}

/* Título da box */
.box-title {
    background-color: #121212;
    color: #FFF;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 6px 10px;
    text-shadow: 1px 1px 1px #000;
}

/* Conteúdo da box */
.box-content {
    background-color: #161616;
    padding: 12px 10px;
    font-size: 11px;
    line-height: 1.4;
    color: #CCC;
}

/* Conteúdo da box NOTÍCIAS */
.box-noticias .box-content {
    background-color: #161616;
    color: #FFF;
}

/* Inputs do painel de controle */
.box-content input[type="text"],
.box-content input[type="password"] {
    background-color: #000;
    border: 1px solid #222;
    color: #CCC;
    font-size: 11px;
    padding: 6px 6px;
    height: 32px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 0;
    border-radius: 0;
}

/* Label (LOGIN :, SENHA :) → com o efeito correto */
.box-content label {
    color: #FFF;
    font-size: 11px;
    display: block;
    margin-bottom: 2px;
    font-weight: bold;
    text-shadow: 1px 1px 1px #000;
}

/* Linha tracejada entre os campos */
.box-content .field-separator {
    border-bottom: 1px dashed #333;
    margin: 6px 0;
}

/* Botão de login */
/* Linha do botão + recuperar */
.box-content .login-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 6px;
    padding-bottom: 2px;
}

/* Botão de login */
.box-content .login-button {
    background-color: #0066CC;
    color: #FFF;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 11px;
    padding: 5px 15px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-radius: 0;
    text-shadow: 1px 1px 1px #000;
    line-height: normal; /* garantir que a altura do texto fique igual ao link */
}

.box-content .login-button:hover {
    background-color: #0052a3;
}

/* Recuperar dados */
.box-content .recover-link {
    color: #FFF;
    font-size: 11px;
    text-decoration: none;
    text-shadow: 1px 1px 1px #000;
    line-height: normal; /* para alinhar com o botão */
}

.box-content .recover-link:hover {
    text-decoration: underline;
}



/* Links */
.link {
    color: #0066CC;
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
}

/* Imagens do ranking */
.ranking-img {
    width: 64px;
    height: 64px;
    background-color: #2A2A2A;
    border: 1px solid #444;
    display: block;
    margin: 0 auto 5px;
}

/* Footer */
footer {
    border-top: 1px solid #2A2A2A;
    color: #666;
    font-size: 11px;
    text-align: center;
    padding: 12px 0;
    margin-top: 20px;
}
