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

.painel-admin {
    max-width: 900px;
    margin: 50px auto;
    padding: 40px;
    background-color: rgba(30, 22, 50, 0.9);
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(150, 120, 230, 0.3);
    backdrop-filter: blur(6px);
}

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

form label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
    color: #cbbbee;
}

form input[type="text"],
form textarea,
form select,
form 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;
}

form textarea {
    resize: vertical;
}

button[type="submit"] {
    display: inline-block;
    padding: 12px 24px;
    background-color: #8e70dc;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]: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);
}

ul {
    list-style: none;
    padding-left: 0;
}

ul li {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid #5e4c8a;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 12px;
    box-shadow: 0 0 10px rgba(160, 130, 255, 0.1);
}

ul li a {
    color: #ab9eff;
    text-decoration: none;
    font-weight: bold;
}

ul li a:hover {
    text-decoration: underline;
    color: #d5c7ff;
}
.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;
    }
