
body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #1a1a2e;
    color: #e2e8f0;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    box-sizing: border-box;
}


#meu-form {
    background-color: #16213e;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 500px;
    border: 1px solid #0f3460;
    margin-bottom: 20px;
}


#texto-post {
    width: 100%;
    max-width: 500px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e2e8f0;
    background-color: #0f3460;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-sizing: border-box;
    border-left: 5px solid #e94560;
}


.input-box, div {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

input[type="text"], textarea {
    background-color: #1a1a2e;
    border: 2px solid #0f3460;
    border-radius: 8px;
    padding: 12px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

input[type="text"]:focus, textarea :focus {
    border-color: #e94560;
    outline: none;
    box-shadow: 0 0 8px rgba(233, 69, 96, 0.4);
}

textarea {
    min-height: 120px;
    resize: vertical;
}


button[type="submit"] {
    background-color: #e94560;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px 20px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

button[type="submit"]:hover {
    background-color: #ff5270;
}

button[type="submit"]:active {
    transform: scale(0.98);
}


#texto-post p {
    margin: 0 0 10px 0;
}

#texto-post p:last-child {
    margin-bottom: 0;
}

#texto-post code {
    background-color: #1a1a2e;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', Courier, monospace;
    color: #ff5270;
}

#texto-post pre {
    background-color: #1a1a2e;
    padding: 15px;
    border-radius: 8px;
    overflow-x: auto;
    border: 1px solid #0f3460;
}

#texto-post pre code {
    padding: 0;
    background-color: transparent;
    color: #e2e8f0;
}
