body, html {
    height: 100%;
    width: 100vw;
    position: absolute;
    margin: 0;
    padding: 0;
    background-image: url('img/BgTop2.svg'), url('img/BgBottom.svg');
    background-repeat: no-repeat; /* Adatta l'immagine per coprire l'intero div */
    background-position: top left, bottom right; /* Centra l'immagine nel div */
    background-size: contain;
    overflow: hidden;
    font-family: 'Cormorant', serif;
    font-size: 20px;
    text-align: center;
    color: #44352E;
}

#verticalDiv{
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    display: block;
    overflow: hidden;
    position: absolute;
    background: #FFF;
    background-image: url('img/BgTop2.svg'), url('img/BgBottom.svg');
    background-repeat: no-repeat; /* Adatta l'immagine per coprire l'intero div */
    background-position: top left, bottom right; /* Centra l'immagine nel div */
}

.verticalDiv{    
    max-width: 600px;
}

#nomi{
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
    height: 30%;
    width: 100%;
    display: block;
    position: absolute;
    font-size: 30px;
    align-content: end;
    font-variant: small-caps;
}

.nomiLand{
    background-image: url(img/FraDa_land.svg);
    margin-top: 5%;
    height: 20%;
}

.nomiPort{
    background-image: url(img/FraDa.svg);
    margin-top: 15%;
    height: 30%;
}

.nomiPort_mini{
    background-image: url(img/FraDa.svg);
    margin-top: 5%;
    height: 20%;
}

button{
    font-size: 20px;
    font-family: "cormorant", serif;
    padding: 10px 20px;
    margin: 10px;
    border: 0.5px solid #d5aa5c;
    background-color: #fdfdfd;
    color: #44352E;
    /*box-shadow: #d7c8aca1 8px 5px 16px 0px;*/
}

button:focus{
    background-color: #fff9ef;
}

input, textarea, label, select{
    background-color: transparent;
    font-family: "Cormorant", serif;
    border-width: 0 0 1px 0;
    border-color: #d5aa5c;
    padding: 2px 5px;
    margin: 5px 0px;
    width: calc(100% - 10px);
}

select{
    width: 100%!important;
}

textarea:focus, input:focus, select:focus {
    background-color: transparent;
    outline: none; /* rimuove il bordo di default */
}

input, select{    
    background-color: transparent;
    font-size: 20px;
}

textarea{
    font-size: 18px;
    /* padding-top: 10px; */
    margin-top: 10px;
}

p{
    text-align: left;
    margin: 15px 0px;
}


label {
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 0;
    text-align: left;
}

input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #856b3b; /* colore della spunta */
}