.formTit {
    font-family: News Cycle;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 30px;
    color: #4CAF50;
    font-weight: 300;
    font-size: 20px;
    letter-spacing: 1px;
    border-bottom: 2px solid #4CAF50;
}
.input-border{
    border: 1px solid red;
}

/* Step marker: Place in the form. */
.step {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #4CAF50;
    border: none;  
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5;
  }
  
  .step.active {
    opacity: 1;
  }
  
  /* Mark the steps that are finished and valid: */
  .step.finish {
    background-color: #4CAF50;
  }

/* Full-width input fields */
.Linput{
    width: 100%;
    padding: 8px 15px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  .input-border {
      border: 1.5px solid red;
         
  }
  
  .input-border-success {
    border: 1.5px solid rgb(26, 236, 96);
       
  }
  
  /* Set a style for all buttons */
  #Cbutton {
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
  }
  
  #Cbutto:hover {
    opacity: 0.8;
  }
  
  .Ccontainer {
    padding: 16px;
  }
  
  /* The Modal (background) */
  .cartPubblica {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 10; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    padding-top: 60px;
  }
  
  /* Modal Content/Box */
  .modal-pubblicazione {
    background-color: #eee;
    margin: 20px auto 0px auto; /* 5% from the top, 15% from the bottom and centered */
    width: 70%; /* Could be more or less, depending on screen size */
    padding: 20px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    text-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    -webkit-transition: all .3s;
    -ms-transition: all .3s;
    transition: all .3s;
  }
  
  /* The Close Button (x) */
  .close-c {
    position: absolute;
    right: 10px;
    top: 0;
    color: #000;
    font-size: 25px;
    font-weight: bold;
  }
  
  .close-c:hover,
  .close-c:focus {
    color: red;
    cursor: pointer;
  }
  
  /* Add Zoom Animation */
  .animate-c {
    -webkit-animation: animatezoom 0.6s;
    animation: animatezoom 0.6s
  }
  
  @-webkit-keyframes animatezoom {
    from {-webkit-transform: scale(0)} 
    to {-webkit-transform: scale(1)}
  }
    
  @keyframes animatezoom {
    from {transform: scale(0)} 
    to {transform: scale(1)}
  }