@charset "utf-8";
/* CSS Document */
/* Basic Styles
-------------------------------------------------- */
*{
	margin:0;
	padding:0;
}
body {
	/* Padding to prevent nav overlap with content */
	padding-top: 55px;
  	/* Margin bottom by footer height */
  	margin-bottom: 30px;	
}
/* Adjust padding for mobile devices */
@media screen and (max-width: 768px) {
    body { padding-top: 55px; }
}

/* Landing Page */
.my-title {
	text-align: center;
}

/* Login */
#login-form {
	margin:5% auto;
	max-width:400px;
}

/* Contact */
#contact-form {
	margin:5% auto;
	max-width:500px;
}

/* Home page */
#wrapper{
	padding-top:50px;
}
#choose_action{
	margin:5% auto;
	max-width:250px;	
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
}
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  /* Set the fixed height of the footer here */
  height: 30px;
  background-color: #f5f5f5;
}
.text-muted {
  margin: 8px 0;
  font-size: 12px;
}