@import url(https://fonts.googleapis.com/css?family=Lato:400,900);
@import url('https://fonts.googleapis.com/css?family=Quicksand:400,500,700');

*{
	box-sizing: border-box !important;
  border-radius: 0 !important;
}
html, body{
	height: 100%;
}

body {
  margin: 0;
  font-family: "Quicksand", 'Lato',verdana, sans-serif;
  background-color: ghostwhite;
  //color:#bdbdbd;
  position: relative;
  width: 100%;
}

.formContainer{
	width:90%;
  max-width: 450px;
  display: block;
  margin:auto;
}

#logoImg {
  width: 100%;
}
#logoDiv a{
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
  max-width: 400px;
}
#logoDiv{
	padding-top: 20px;
}

.help-block{
  color:red;
  display: block !important;
}

#recaptcha-container>div {
  align-items: center;
  justify-content: center;
}

.g-recaptcha {
  display: flex;
}

#recaptcha-feedback{
  display: none;
  text-align: center;
}

/* Scroll bar for Chrome and Safari */
/* width */
::-webkit-scrollbar {
  width: 10px;
  height:10px;
}
/* Track */
::-webkit-scrollbar-track, ::-webkit-scrollbar-corner {
  background: #aaa;
}
/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}