body {
  overflow-x: hidden;
}
#wrap_Inputfield_ref{
  display: none;
}
.text-book {
    font-family: "DM Serif Text", serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .text-book-italic {
    font-family: "DM Serif Text", serif;
    font-weight: 400;
    font-style: italic;
  }


  .text-book2 {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-style: normal;
  }

  /* Effetto pulsante */
  .pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.5);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 30px rgba(59, 130, 246, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}
.video-container {
    border: 5px solid rgba(59, 130, 246, 0.8); /* Bordo blu trasparente */
    border-radius: 8px; /* Bordo arrotondato */
}
.Inputfields{
  display:flex;
  flex-wrap: wrap;
  gap:8;
  justify-content:left;
  align-items: center;
}
#wrap_Inputfield_nome{
 flex: 0 1 50%;
}
#wrap_Inputfield_cognome{
  flex: 1 1;
}
#wrap_book_prelancio_submit{
  flex: 1 1 100%;
}
#wrap_book_prelancio_submit button{
  width:100%;
}
.Inputfields label{
  display: flex;
  margin-bottom:0.5rem;
  font-size: 18px;
}
#Inputfield_nome, #Inputfield_cognome, #Inputfield_email, #Inputfield_telefono{
  width:100% !important;
  border:1px #dedede solid !important;
  border-radius: 1rem !important;
}
.Inputfields button{
  display: flex;
  border-radius: 1rem !important;
  bottom: 0;
  border-bottom-width: 6px;
  border-color: #991b1b;
  width: 10rem;
}
@media only screen and (max-width: 900px) {
  #wrap_Inputfield_nome{
      flex: 0 1 50%;
  }
  #wrap_Inputfield_telefono{
      justify-content: flex-end;
      width: 100%;
  }
}
.text-danger{
  color: red;
}
label.error{
  color: red;
  font-size: 13px;
}
#wrap_Inputfield_privacy label span{
  font-size: 14px;
  margin-left: 1rem;
}
#wrap_Inputfield_privacy a{
  font-weight: bold;
}
#wrap_Inputfield_newsletter_level{
  display: none;
}
#background-video{
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 138%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 1;
}
img {
  max-width: 100%;
  height: auto;
}