


* {
  box-sizing: border-box;
}

input[type=text],input[type=email], input[type=number],input[type=datetime-local], select, textarea {
  width: 85%;
  padding: 12px;
  border: 1px solid #098eff;  /* #ccc; */
  border-radius: 4px;
  resize: vertical;
}

label {
  padding: 12px 12px 12px 20px;
  display: inline-block;
}

/*
input[type=submit] {
  background-color: #4CAF50;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: right;
}
*/

input[type=button], input[type=submit], input[type=reset] {
  background-color: #098eff; /* #4CAF50; */
  border: none;
  color: white;
  padding: 16px 32px;
  text-decoration: none;
  margin: 4px 2px;
  cursor: pointer;
}

input[type=button], input[type=submit], input[type=reset]:hover {
  background-color: #098eff; /* #45a049; */
}

.container {
  border-radius: 5px;
  background-color: #f2f2f2; 
  padding: 15px;
}

.col-25 {
  float: left;
  width: 35%;
  margin-top: 6px;
   /* margin-left: 10px; */
}

.col-75 {
  float: left;
  width: 65%;
  margin-top: 6px;
  /* margin-left: 10px; */
}

.col-100 {
  float: center;
  width: 100%;
  margin-top: 6px;
  /* margin-left: 10px; */
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
/* 
   Layout responsivo -
   quando lo schermo è largo meno di 600px, 
   fai impilare le due colonne una sull'altra 
   invece che una accanto all'altra 
*/
@media screen and (max-width: 600px) {
  .col-25, .col-75, .col-100, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
}


fieldset {
  background-color: #eeeeee;
}

legend {
  background-color: #098eff;  /* gray; */
  color: white;
  padding: 5px 10px;
}

input {
  margin: 5px;
}
