﻿body {
    margin: 0;
    padding: 0;
    font-family: 'Cormorant Garamond', serif;
    background: linear-gradient(to right, #1a1123, #261b35);
    color: #e8ddff;
}

.conteudo-principal {
    max-width: 800px;
    margin: 50px auto;
    padding: 40px;
    background-color: rgba(25, 18, 38, 0.92);
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(150, 120, 230, 0.3);
    backdrop-filter: blur(8px);
}

.conteudo-principal h2 {
    text-align: center;
    color: #d5bfff;
    font-size: 2em;
    margin-bottom: 30px;
    text-shadow: 0 0 5px #6a49c2;
}

.formulario label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #ccb9ee;
}

.formulario input[type="text"],
.formulario textarea,
.formulario input[type="file"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #5e4c8a;
    border-radius: 8px;
    background-color: #2e2351;
    color: #fff;
    font-size: 16px;
}

.formulario textarea {
    resize: vertical;
}

.painel-botao {
    display: inline-block;
    padding: 12px 24px;
    background-color: #8e70dc;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.painel-botao:hover {
    background-color: #a985f5;
}

strong {
    display: block;
    background-color: #4c3b6f;
    padding: 12px;
    border-radius: 8px;
    color: #d9c9ff;
    margin-bottom: 20px;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(160, 130, 255, 0.3);
}
.botao-voltar {
    display: inline-block;
    padding: 12px 24px;
    background-color: #6e59c5;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    box-shadow: 0 0 10px rgba(150, 120, 230, 0.3);
    margin-top: 20px;
}

.botao-voltar:hover {
    background-color: #8e70dc;
}
