@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap');

body {
    color: #000;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
}


#informacion {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 600px;
    margin: 0 auto;
}

fieldset {
    border: 2px solid #4CA452;
    padding: 20px;
    border-radius: 10px;
}

select {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #4CA452;
    border-radius: 5px;
    font-size: 16px;
    background-color: white;
    color: #333;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    cursor: pointer;
}

legend {
    font-size: 20px;
    font-weight: bold;
    color: #4CA452;
}

label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
    color: #333;
}

input,
textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #4CA452;
    border-radius: 5px;
    font-size: 16px;
}

button[type] {
    background-color: #4CA452;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

button:hover {
    background-color: #aeb984;
}

a {
    display: inline-block;
    margin-top: 10px;
    color: #4CA452;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

.contenedorActividad {
    width: 30%;
    display: grid;
    row-gap: 10px;
    margin: 0 auto;
}

#volver {
    display: inline-block;
    background-color: #4CA452;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 16px;
    color: white;
    text-decoration: none;
}

#volver:hover {
    background-color: #aeb984;
}

.contenedorActividad>h1 {
    font-weight: normal;
    margin-bottom: 5px;
}

#proxectosComunidade {
    width: 50%;
    margin: 0 auto;
    display: grid;
    row-gap: 60px;
}

.contenedorProxectos {
    background-color: #C8E6C9;
    border-radius: 10px;
    padding: 10px;
    display: grid;
    grid-template-columns: 400px 400px;
    column-gap: 70px;
}

.contenedorProxectos img {
    width: 400px !important;
    height: auto !important;
    max-width: none !important;
    border-radius: 10px;
}

.checkbox-container {
    display: grid;
    grid-template-columns: 200px 200px;
    gap: 10px;
    /* Espaciado entre opciones */
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    /* Espaciado entre checkbox y texto */
}

.checkbox-item input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-item label {
    font-size: 16px;
    cursor: pointer;
}

b {
    color: red;
}