/* 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;
}

.form-usuario textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #ccc;
    background: #fafafa;
    font-size: 1rem;
    margin-bottom: 15px;
    transition: .2s;
    resize: vertical;
    min-height: 120px;
}

.form-usuario textarea: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;
}

.social-login-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    color: #777;
    font-size: .92rem;
}

.social-login-divider::before,
.social-login-divider::after {
    content: "";
    height: 1px;
    flex: 1;
    background: #ddd;
}

.social-login-stack {
    display: grid;
    gap: 12px;
}

.social-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 48px;
    border: 1px solid #ccc;
    background: #fff;
    color: #222 !important;
    font-weight: 600;
    text-decoration: none !important;
}

.social-login-btn:hover {
    background: #f7f7f7;
}

.social-login-btn i {
    font-size: 1rem;
}

.social-login-btn--google {
    border-color: #d7d7d7;
}

.social-login-btn--google i {
    color: #ea4335;
}

/* 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;
}

.info-box {
    padding: 12px 14px;
    background: #f4ecff;
    color: #4c1d95;
    border: 1px solid #e0cfff;
    border-radius: 6px;
    margin-bottom: 14px;
    font-weight: 500;
}
main{ min-height: 60vh  ;}

/* ======================================================
   FOOTER — protegido
====================================================== */
footer,
.footer,
#footer {
  background: #1a1423 !important;
  color: #fff !important;
}
