

.painel {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 30px;
   
}

/* Formulário com estética de grimório */
.formulario {
    background-color: #f4e1c1;
    border: 4px double #6b4e2e;
    border-radius: 12px;
    padding: 40px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    font-family: 'MedievalSharp', cursive;
}

/* Título com toque de pergaminho */
.formulario h1 {
    text-align: center;
    color: #5a3921;
    font-size: 2rem;
    margin-bottom: 25px;
    text-shadow: 1px 1px #e9d4b4;
}

/* Inputs estilo manuscrito */
.formulario input {
    width: 100%;
    padding: 12px 14px;
    margin: 12px 0;
    border: 2px solid #b2936b;
    border-radius: 6px;
    font-size: 1rem;
    background-color: #fffaf0;
    color: #3e2a16;
    font-family: 'MedievalSharp', cursive;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.formulario input:focus {
    border-color: #c29a5d;
    box-shadow: 0 0 10px #dabd83;
    outline: none;
}

/* Botão com aparência de selo */
.formulario input[type="submit"] {
    background-color: #8b2e18;
    color: #fbead3;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.formulario input[type="submit"]:hover {
    background-color: #a53a22;
    transform: scale(1.05);
}

/* Placeholder estilo antigo */
.formulario input::placeholder {
    color: #9c8464;
    font-style: italic;
}
