/* Form styles */
.formulario {
    max-width: 800px;
    margin: 0 auto;
}

.styled-checkbox {
    display: none;
}

.styled-checkbox + label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
}

.styled-checkbox + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #2E563E;
    border-radius: 3px;
}

.styled-checkbox:checked + label:after {
    content: '\2713';
    position: absolute;
    left: 5px;
    top: -2px;
    color: #2E563E;
    font-size: 18px;
}

.input {
    margin-bottom: 20px;
}

.input p {
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
}

.input input[type="text"],
.input input[type="email"],
.input input[type="number"],
.input select {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.input input:focus,
.input select:focus {
    outline: none;
    border-color: #2E563E;
}

.input input[type="checkbox"] {
    margin-right: 10px;
}

#submit-mun {
    background-color: #2E563E;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#submit-mun:hover {
    background-color: #3A7B5C;
}

#submit-mun:disabled {
    background-color: #999;
    cursor: not-allowed;
}
