.fons
{
    background-color: #C4D9E5;
    border-radius: 20px;
    margin: 2% 2% 0 2%;
}

.infor
{
    padding: 2%;
}

.dalEsquerra
{
    border: 0px solid red;
    width: 50%;
    display: grid;
    grid-template-columns: auto auto;
    /* gap: 10%;
    row-gap: 50%; */
}

.dalEsquerra > input
{
    margin: 4%;
}

.dalDreta
{
    border: 0px solid red;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.dalDreta > *
{
    margin: 2%;
}

.avall
{
    border: 0px solid green;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}

.dal
{
    border: 0px solid green;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.fomrulari
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1%;
}

input
{

    background-color: inherit !important;
    color: #818181;
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    border-bottom: 1px solid #818181;
    font-family: "Overlock-N";

}

textarea
{
    width: 70%;
    background: none;
    border: 1px solid #818181;
    font-family: "Overlock-N";
}

input:focus,select, textarea:focus
{
    outline: none;
    /* background-color: ; */
    color: #818181;
}

.butt
{
    background: #D9E3E5;
    border: #818181;
    color: #818181;
    border-radius: 10px;
    padding: 0.5%;
    /* width: 80%; */
    font-family: "Overlock-N";
}

button:hover
{
    cursor: pointer;
}

@media (max-width: 999px) 
{
    .dalEsquerra
    {
        width: 100%;
        display: grid;
        grid-template-columns: auto;
    }

    .dalDreta
    {
        width: 100%;
    }

    .avall
    {
        flex-direction: column;
        justify-content: center;
    }

    .dal
    {
        flex-direction: column;
    }

    textarea
    {
        width: 92% !important;
    }

    button
    {
        width: 80%;
        padding: 2%;
        margin-top: 2%;
    }

}