/*
 CSS for the main interaction
*/
.btn-entrypoint {
  background-color: #06c;
  border-color: #06c;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  padding: 10px 20px;
  text-transform: uppercase;
  border-radius: 5px;
  text-decoration: none;
  margin: 10px;
  width: 150px;
}
.toolbox {
  text-align: -webkit-center;
  padding: 30px 0 30px;
  width: 100%;
}
.box {
  margin: auto !important;
  border: 1px solid #eb641f;
  box-shadow: 0 5px 50px #ccc;
  border-radius: 15px;
  min-width: 300px;
  max-width: 650px;
  min-height: 400px;
  padding: 20px;
  margin: 2px;
}

@media screen and (max-width:800px) {
  .box {
    width: 80%;
    height: 100%;
  }
  .toolbox {
    display: block;
  }
  .column {
    clear: both;
    min-width: 100%;
  }
}

.column {
  float: left;
  width: 50%;
  text-align: left;
}

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

.tabset > input[type="radio"] {
  position: absolute;
  left: -200vw;
}

.tabset .tab-panel {
  display: none;
}

.tabset > input:first-child:checked ~ .tab-panels > .tab-panel:first-child,
.tabset > input:nth-child(3):checked ~ .tab-panels > .tab-panel:nth-child(2),
.tabset > input:nth-child(5):checked ~ .tab-panels > .tab-panel:nth-child(3),
.tabset > input:nth-child(7):checked ~ .tab-panels > .tab-panel:nth-child(4),
.tabset > input:nth-child(9):checked ~ .tab-panels > .tab-panel:nth-child(5),
.tabset > input:nth-child(11):checked ~ .tab-panels > .tab-panel:nth-child(6) {
  display: block;
}

.tabset > label {
  position: relative;
  display: inline-block;
  padding: 15px 15px 25px;
  border: 1px solid transparent;
  border-bottom: 0;
  cursor: pointer;
  font-weight: 600;
}

.tabset > label::after {
  content: "";
  position: absolute;
  left: 15px;
  bottom: 10px;
  width: 22px;
  height: 4px;
  background: #8d8d8d;
}

.tabset > label:hover,
.tabset > input:focus + label {
  color: #06c;
}

.tabset > label:hover::after,
.tabset > input:focus + label::after,
.tabset > input:checked + label::after {
  background: #06c;
}

.tabset > input:checked + label {
  border-color: #ccc;
  border-bottom: 2px solid #fff;
  margin-bottom: -1px;
}

.tab-panel {
  padding: 30px 0;
  border-top: 1px solid #ccc;
}

.loginpin_label {
  text-align: left;
  display: inline-block;
  width: 100%;
  margin: 5px;
  font-size: 16px;
  font-weight: 700;    
}

.loginpin_input {
  width: 100%;
  height: 36px;
  /*padding: 4px 12px;*/
  border: 1px solid;
  border-color: #b2bbbd; /*grigio 20*/
  border-radius: 0;
  background-color: #f5f5f0; /*grigio chiaro*/
  font-family: "Titillium Web";
  font-size: 18px;
  color: #3a424b; /*grigio medio*/
  background-image: none;
}

.loginpin_input:focus {
  color: #1c2024; /*grigio 80*/
}

.loginpin_input:not([value='']) {
  color: #1c2024; /*grigio 80*/
}

.login_btn {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  border: 0;
  border-bottom: 3px solid #5a6772; /*grigio 50*/	
  border-radius: 0;	
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  cursor: pointer;
  padding: 8px 24px;
  background-image: none;       
  background: #b2bbbd;
  margin: 10px;
  line-height: 1.4;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; 
}

.login_btn:hover {
  background: #0066cc;
}

.login_btn-primary {
  background: #007db3;
  color: #fff;
  border: 0px;
  border-bottom: 3px solid #006b9a;
}

