@charset "UTF-8";
/* CSS Document */

/*----------------
Media Query in ordine alfabetico-----------------*/


@media only screen and (min-width : 320px) {
    


form {
    width: 90%;
    margin: 0em auto 2em;
}

.group { 
	position: relative; 
  margin-top: 35px;
    width: calc(100% - 25px);
    float: left;
}
    
.rowPrivacy{
    position: relative; 
	margin-top: 35px; 
    width: 85%;
    float: left;
    display: flex;
    flex-direction: row;
    align-items: center;
}
    
.textDeclare{
	color: #6b6b6b; 
	font-size: 15px;
    font-weight: 400;
	position: absolute;
	pointer-events: none;
	left: 5px;
	top: 10px;
	transition: all 0.2s ease;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.2px;
}

.group input {
	font-size: 15px;
	padding: 5px;
	display: block;
	background: #ffffff;
    -webkit-appearance: none;
	color: #2d3844;
	width: 100%;
	border: none;
	border-radius: 0;
	border-bottom: 1px solid #6b6b6b;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.group input:focus { 
    outline: none; 	
    padding: 2px 5px 5px 5px; 
}
    
/*
 input[type=date]:focus::-webkit-datetime-edit-month-field {
    color: #2d3844;
  }
 input[type=date]:focus::-webkit-datetime-edit-day-field {
    color: #2d3844;
  }
input[type=date]:focus::-webkit-datetime-edit-year-field {
    color: #2d3844;
  }    
    
 input[type=date]::-webkit-datetime-edit-month-field {
    color: #ffffff;
  }
 input[type=date]::-webkit-datetime-edit-day-field {
    color: #ffffff;
  }
input[type=date]::-webkit-datetime-edit-year-field {
    color: #ffffff;
  }   
    
*/
    
    
/* Label */

.group label {
	color: #6b6b6b; 
	font-size: 15px;
    font-weight: 400;
	position: absolute;
	pointer-events: none;
	left: 5px;
	top: 10px;
	transition: all 0.2s ease;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.2px;

}


/* active */
    
.group input:focus{
    border-bottom: 0px;
}

.group input:focus ~ label, .group input.used ~ label {
	top: -20px;
  transform: scale(.87); left: -2px;
	/* font-size: 14px; */
	color: #4a89dc;
}
    
.group input:focus ~ .messageError, input.used ~ .messageError{
        display: block;
    }


/* Underline */

.bar {
	position: relative;
	display: block;
	width: 100%;
}

.bar:before, .bar:after {
	content: '';
	height: 3px; 
	width: 0;
	bottom: 1px; 
	position: absolute;
	background: #4a89dc; 
	transition: all 0.2s ease;
}

.bar:before { left: 50%; }

.bar:after { right: 50%; }


/* active */

.group input:focus ~ .bar:before, input:focus ~ .bar:after { width: 50%; }


/* Highlight */

.highlight {
	position: absolute;
	height: 60%; 
	width: 100px; 
	top: 25%; 
	left: 0;
	pointer-events: none;
	opacity: 0.5;
}


/* active */

.group input:focus ~ .highlight {
	animation: inputHighlighter 0.3s ease;
}


/* Animations */

@keyframes inputHighlighter {
	from { background: #4a89dc; }
	to 	{ width: 0; background: transparent; }
}
    
@-webkit-keyframes inputHighlighter {
	from { background: #4a89dc; }
	to 	{ width: 0; background: transparent; }
}
    
@-moz-keyframes inputHighlighter {
	from { background: #4a89dc; }
	to 	{ width: 0; background: transparent; }
}
    



/* Button */

.button {
  position: relative;
  display: inline-block;
  padding: 12px 24px;
  margin: .3em 0 1em 0;
  width: 100%;
  vertical-align: middle;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  -webkit-font-smoothing: antialiased;
  text-align: center;
  letter-spacing: 1px;
  background: transparent;
  border: 0;
  border-bottom: 2px solid #3160B6;
  cursor: pointer;
  transition: all 0.15s ease;
}
    
.button:focus { outline: 0; }


/* Button modifiers */

.buttonBlue {
  background: ##4a89dc;
  text-shadow: 1px 1px 0 rgba(39, 110, 204, .5);
}

.buttonBlue:hover { background: #357bd8; }


/* Ripples container */

.ripples {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: transparent;
}


/* Ripples circle */

.ripplesCircle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.ripples.is-active .ripplesCircle {
  animation: ripples .4s ease-in;
}


/* Ripples animation */
    
@-webkit-keyframes ripples {
  0% { opacity: 0; }

  25% { opacity: 1; }

  100% {
    width: 200%;
    padding-bottom: 200%;
    opacity: 0;
  }
} 
    
@-moz-keyframes ripples {
  0% { opacity: 0; }

  25% { opacity: 1; }

  100% {
    width: 200%;
    padding-bottom: 200%;
    opacity: 0;
  }
}  

@keyframes ripples {
  0% { opacity: 0; }

  25% { opacity: 1; }

  100% {
    width: 200%;
    padding-bottom: 200%;
    opacity: 0;
  }
}    
    
}


/*XS*/
@media only screen and (min-width : 480px) {
    
form {
    max-width: 380px;
}
    
}


/*SM*/
@media (min-width: 768px) { 
    
form {
    width: 70%;
}

}


/*MD*/
@media (min-width: 992px) {
    
.group { 
  margin-top: 45px;
    width: calc(100% - 35px);
}
    
.group input {
	padding: 10px 10px 10px 5px;
}
    
.group input:focus { 	
    padding: 10px 10px 10px 5px; 
}
    
.rowPrivacy{
	margin-top: 45px; 
}
    
.group input {
	font-size: 17px;
}
    
form {
    width: 50%;
    margin: 0em auto 2em;
}    
    
.group label {
	font-size: 17px;
}
    
.textDeclare {
	font-size: 17px;
}
    
}


/*LG*/
@media (min-width: 1500px) { 

}