
#formulario-mmc {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: auto;
    font-family: 'Segoe UI', sans-serif;
}
#formulario-mmc label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
}
#formulario-mmc input {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
}
#formulario-mmc .form-buttons {
    display: flex;
    justify-content: space-between;
}
#formulario-mmc .form-buttons button {
    background: #0073aa;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}
#formulario-mmc .form-slide {
    display: none;
    transition: opacity 0.3s ease-in-out;
}
#formulario-mmc .form-slide.active {
    display: block;
}
#form-message {
    margin-top: 15px;
    font-weight: bold;
}
