* {
  padding:0px;
  margin:0px;
  box-sizing: border-box;
  font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;
  color:#707070;
}

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

.form-control:focus {
  outline: none !important;
  border:1px solid #7FAE39;
  box-shadow:none;
}

h1 {
  font-size:2rem;
  margin-bottom:2rem;
}

h4,input:focus {
	animation: pulsate 1s infinite;
	transition: all 0.5s;
}

#form>.row {
  margin-top:20vh;
  display:none;
  padding:2rem;
}

#form>div {
  border:double #70706E;
  border-radius:1rem;
  padding:1rem;
  margin-left:1rem;
  margin-right:1rem;
  box-shadow: 0px 10px 15px grey;
}

.Professionnel,.Particulier {
  display:none;
}

button {
  margin:auto;
  transition: all 0.5s;
}

button:hover {
  animation: pulsate 1s infinite;
  transition: all 0.5s;
}

.btn-primary {
  background:#428bca;
  border-color:#428bca;
}

.btn-primary:hover {
  background:#6BBB2C;
  border-color:#6BBB2C;
}

.loader {
  display:none;
  margin:auto;
}

main {
	margin-bottom:20vh;
}

@media(max-width:767px) {
  .form-control,button {
    margin-top:10px;
  }
	#form>.row {
  margin-top:10vh;
	}
}
