/* LOGIN FLAT - Alvorada Editora */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #fff; /* fundo branco como resto do site */
    color: #222;
}

/* Mantém o layout igual às outras páginas */
.sobre-nos {
    padding: 50px 20px;
}

.sobre-container {
    width: 100%;
    max-width: 600px;
    margin: auto;
    text-align: left; /* igual ao padrão */
}

/* Títulos iguais ao site */
.sobre-container h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}

.sobre-container p {
    color: #444;
    margin-bottom: 20px;
}

/* Inputs padrão do site (flat) */
.form-usuario input {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #ccc; /* borda discreta */
    background: #fafafa;
    font-size: 1rem;
    margin-bottom: 15px;
    transition: .2s;
}

.form-usuario input:focus {
    outline: none;
    border-color: #7b2cbf;
    background: #fff;
}

/* Botão padrão (usa .btn-publicar existente) */
.btn-publicar {
    width: 100%;
    padding: 14px;
    background: #7b2cbf;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    font-weight: 600;
}

.btn-publicar:hover {
    background: #5a189a;
}

/* Links */
.sobre-container a {
    color: #7b2cbf;
    text-decoration: none;
    font-weight: 500;
}

.sobre-container a:hover {
    text-decoration: underline;
}

/* Erro (flat, sem caixa decorada) */
.erro-box {
    padding: 10px 0;
    color: #b40000;
    font-weight: 600;
    margin-bottom: 10px;
}
main{ min-height: 60vh  ;}

/* ======================================================
   FOOTER — protegido
====================================================== */
footer,
.footer,
#footer {
  background: #1a1423 !important;
  color: #fff !important;
}
