.headingColor{
	color: #22a39a
}
.bodyColor{
	color: #912d37
}
.borderColor{
	border-color: #22a39a
}
.borderCircle {
  border-radius: 9999px;
}

.lightText {
  color: #999;
}

/* Bordered form */
.form {
  border: 3px solid #f1f1f1;
}

/* Full-width inputs */
.input[type=text]{
  width: 40%;
  box-sizing: border-box;
}

/* Full-width inputs */
.input2[type=text], .input2[type=password] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

/* Style buttons */
.btn2 {
  background-color: #22a39a; /* DodgerBlue background */
  border: none; /* Remove borders */
  color: white; /* White text */
  padding: 12px 16px; /* Some padding */
  font-size: 16px; /* Set a font size */
  cursor: pointer; /* Mouse pointer on hover */
}

/* Darker background on mouse-over */
.btn:hover {
  background-color: RoyalBlue;
}

#overlay {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255,255,255,0.9);
  z-index: 2;
  cursor: pointer;
}

#text{
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 20px;
  color: black;
  transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
}