
.comunidade-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
    text-align: center;
}
.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}
form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
input, button {
    padding: 12px;
    font-size: 1rem;
    border-radius: 6px;
    border: 1px solid #ccc;
}
button {
    background-color: #6200ee;
    color: white;
    cursor: pointer;
    transition: background 0.3s;
}
button:hover {
    background-color: #3700b3;
}
#form-msg {
    margin-top: 15px;
    color: green;
}
.hidden {
    display: none;
}
