:root {
    --verde-subway: #009245; /* Verde Subway */
    --verde-claro: #c8dcb062; /* Verde claro */
    --amarillo-subway: #FEDD00; /* Amarillo Subway */
    --amarillo-claro: #fff3b9; /* Amarillo claro */
    --blanco: #FFFFFF; /* Blanco */
    --negro: #232323; /* Negro */
}



body {
    background-color: #eaeaea;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: space-evenly;
    margin: 0px;
}



h1 {
    text-align: center;
    color:var(--verde-subway);
    margin: 0;
    padding: 20px 0;
    background-color: #FFFFFF;
}

label:hover {
    color: var(--verde-subway);
    cursor: pointer;
}

.contenido {
    display: block;
    width: calc(80vw - 100px);
    height: calc(100vh - 100px);
    background-color: #fff;
    position: sticky;
    top: 0;
    padding: 50px;
    box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.316);

    display: flex;
    justify-content: center;
    align-items: center;
}

.contenido img {
    width: 80%;
    height: auto;
    
}

.formulario {
    z-index: 5;
    background-color: rgb(226, 226, 226);
    /* border-radius: 20px; */
    /* padding: 10px; */
    /* margin-top: 50px; */
    margin-bottom: 50px;
    width: 30vw;
    box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.316);
}

.element {
    margin: 10px 0; 
    padding: 20px;
    background-color: white;
}

.input {
    display: flex;
    justify-content: space-between;
    border-bottom: solid 1px gray;
    padding: 15px 0px;
}

.input:has(:hover)  {
    background-color: rgb(225, 225, 225);
}

.input:has(input:checked) {
    background-color: var(--verde-claro);
    color: var(--verde-subway);
    font-weight: bold;
    border-bottom: var(--verde-subway) 2px solid;
}

.input label {
    padding-left: 10px;
}

.input input {
    padding-right: 10px;
}

@media (max-width: 1200px) {
    .contenido { 
        position: relative;
        width: calc(100% - 100px);
        height: 50vh;
    }
    body {
        flex-direction: column;
        align-items: center;
    }

    .formulario {
        width: 100%;
    }
}