*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial;
  }
  body{
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    background: url(img/wallpaper.jpg);
    background-size: cover;
    padding: 25px;
    align-items: center;
    justify-content: center;
  }
  .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    /* background: white; */
    margin-bottom: 50px;
  }
  .logo img {
      max-width: 600px;
      width: 100%;
      /* background: white; */
      padding: 20px;
      border-radius: 20px;
      /* box-shadow: 0 0 10px #00000052; */
  }
  .prova{
    min-height: 70vh;
    width: 90%;
    max-width: 1200px;
    width: 100%;
    padding: 30px 50px;
    border-radius: 15px;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    box-shadow: 0 0 10px #00000052;
  }
  .boxTitle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 350px;
  }
  .imgTitle {
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    max-width: 350px;
    transition-property: transform;
  }

.imgTitle p {
    padding: 3px 20px;
    transform: translate(0px, 2px);
    color: #000000;
    border-radius: 30px;
    border: 2px solid #000000;
    transition: 0.3s;
    min-width: 150px;
    text-align: center;
}

.imgTitle p:hover {
    cursor: pointer;
    background: #ffe200;
}

  .boxIns{
    height: 100%;
    min-height: 200px;
    width: 95%;
    /* margin: auto; */
    display: flex;
    flex-direction: column;
    padding: 50px 0px;
    /* border: 2px solid black; */
  }

  .title {
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      margin: 0 0 10px 0;
      /* background: #ffd900; */
      /* padding: 3px 10px; */
      /* border-radius: 10px; */
      /* max-height: 75px; */
  }
  
  .title img {
      max-width: 80px;
      max-height: 100px;
      /* margin: 0 0 0 20px; */
      /* display: none; */
  }
  .title h1 {
      /* text-shadow: 1px 1px 2px #1a1a1a; */
      /* color: white; */
      font-size: 40px;
      margin-left: 20px;
      color: #1a1a1a;
      /* background: #ffda00; */
      /* padding: 3px 20px; */
      /* border-radius: 14px; */
  }
.boxSceltaSistema {
    width: 80%;
    margin: 10px auto;
    display: flex;
    flex-direction: row;
    /* border: 2px solid #ffffff; */
    background: #153c77;
    cursor: pointer;
    transition: 0.3s;
    transition-property: transform;
    border-radius: 20px;
    padding: 8px;
    box-shadow: 0 0 10px #153c7754;
    align-items: center;
    color: yellow;
}

.boxSceltaSistema:hover {
    /* animation: pulsate-fwd 0.5s ease-in-out infinite both; */
    transform: scale(1.03);
}

.boxSceltaSistema:hover .boxSceltaSistema_titolo {
    /* animation: pulsate-fwd 0.5s ease-in-out infinite both; */
    color: #ffe200 !important;
}
.boxSceltaSistema_img {
    width: 120px;
    height: 120px;
    background: #ffffff;
    margin: 0 auto;
    border-radius: 50%;
    /* border: 3px solid #e4007a; */
    display: flex;
    padding: 5px;
    margin-bottom: 6px;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0 0 10px #000000; */
}
.boxSceltaSistema_img img {max-width: 95%;max-height: 95%;padding: 10px;}

.boxSceltaSistema_titolo {
    height: auto;
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 30px;
    margin: 0 20px;
    text-align: center;
    transition: 0.3s;
}

.boxSceltaSistema_titolo p {
    font-size: 23px;
    font-weight: 600;
}
  .sceltaSistema {
    background: blue;
    margin: auto;
    display: flex;
    justify-content: center;
}

.tastoScelta {
        min-width: 160px;
        min-height: 160px;
        border: 2px solid black;
        margin: 0 20px;
        border-radius: 50%;
    }
  
  .boxInput form div label {
      padding-left: 8px;
      margin-bottom: 15px;
      font-size: 20px;
      font-weight: 600;
  }
/* !important */
.margin_bottom0 {
    margin-bottom: 0 !important;
}
.flex_line {
    flex-direction: row !important;
    align-items: center !important;
}
.cursor_pointer {
    cursor: pointer !important;
}

  
  
  @media (max-width: 990px) {

.boxSceltaSistema {
width: 95%;
}
.title {
    flex-direction: column;
    padding: 20px 5px 0 5px;
}

.prova {
    padding: 0;
    margin: auto 0;
}
    .boxSceltaSistema_img {
    width: 140px;
    height: 140px;
}
.title img {
    margin: 0;
}
.title h1 {
    margin-left: 0;
}
.boxSceltaSistema_img img {
    max-width: 100px;
    max-height: 80px;
}
  
.boxNumber {
    flex-direction: column;
}


div#iptPrefisso {
    max-width: 100%;
}

.boxInput form div input {
    font-size: 35px;
    height: 48px;
}

.boxInput form div label {
    font-size: 32px;
    margin-bottom: 20px;
}

  
  }

@keyframes pulsate-fwd {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}
  