body {
    font-family: Nunito, Arial, Helvetica, sans-serif;
    color: #333;
    font-size: 0.95em;
}

input[type=text], input[type=button], input[type=submit] {
-webkit-appearance: none;
-webkit-border-radius: 0;
}
.center-image
{
  text-align:center;
  display:block;
}
.center-image img {
  width: 50%;
  height: auto;
}
.form-head {
    color: #191919;
    font-weight: normal;
    font-weight: 400;
    margin: 0;
    text-align: center;
    font-size: 1.8em;
}

.error-message {
    padding: 7px 10px;
    background: #fff1f2;
    border: #ffd5da 1px solid;
    color: #d6001c;
    border-radius: 4px;
    margin: 30px 10px 10px 10px;
}

.demo-table {
    background: #ffffff;
    border-spacing: initial;
    margin: 15px auto;
    word-break: break-word;
    table-layout: auto;
    line-height: 1.8em;
    color: #333;
    border-radius: 4px;
    padding: 30px;
    width: 380px;
    border: 1px solid;
    border-color: #e5e6e9 #dfe0e4 #d0d1d5;
}

.demo-table .label {
    color: #888888;
}

.demo-table .field-column {
    padding: 15px 10px;
}

.demo-input-box {
    padding: 13px;
    border: #CCC 1px solid;
    border-radius: 4px;
    width: 100%;
}

.btnLogin {
    padding: 13px;
    background-color: #5d9cec;
    color: #f5f7fa;
    cursor: pointer;
    border-radius: 4px;
    width: 100%;
    border: #5791da 1px solid;
    font-size: 1.1em;
    -webkit-appearance: none;
    -webkit-border-radius: 0;
}

.response-text {
    max-width: 380px;
    font-size: 1.5em;
    text-align: center;
    background: #fff3de;
    padding: 42px;
    border-radius: 3px;
    border: #f5e9d4 1px solid;
    font-family: arial;
    line-height: 34px;
    margin: 15px auto;
}

.terms {
    margin-bottom: 5px;
}

.dashboard {
    background: #9DD9E5;
    text-align: center;
    margin: 15px auto;
    line-height: 1.8em;
    color: #333;
    border-radius: 4px;
    padding: 30px;
    /*max-width: 400px;*/
    border: #c8e0cb 1px solid;
}

.user-loggedout {
	background: #FFC03E;
    text-align: center;
    margin: 15px auto;
    line-height: 1.8em;
    color: #333;
    border-radius: 4px;
    padding: 30px;
    max-width: 600px;
    border: #c8e0cb 1px solid;
}
.error-info {
    color: #FF0000;
    margin-left: 10px;
}
a.logout-button {
    color: #09f;
}

.button-wrapper {
  display: block;
  text-align: center;
}

.button {
  border: none;
  border-radius: 10px;
  box-shadow: 2px 2px 2px rgba(0,0,0,0.2);
  display: inline-block;
  font-size: 0.8em;
  font-weight: 800;
  text-decoration: none;
  margin: 5px;
  padding: 1em 2em;
  width: auto;
}

.cta-button {
  background: #F26936; /*Orange*/
  color: #000;    /*Black*/
}
.cta-daily-button {
  background: #f6924d; /*Pale orange*/
  color: #000;    /*Black*/
}
.cta-weekly-button {
  background: #F26936; /*Orange*/
  color: #000;    /*Black*/
}

.cta-button:hover {
  background-color: #F6924D; /*Light Orange*/
}

/* Top Menu CSS */
/* The navigation bar */
.navbar {
  overflow: hidden;
  background-color: #464b55;
  position: fixed; /* Set the navbar to fixed position */
  top: 0; /* Position the navbar at the top of the page */
  width: 100%; /* Full width */
}

/* Links inside the navbar */
.navbar a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change background on mouse-over */
.navbar a:hover {
  background: #F6924D; /*light orange*/
  color: white;
}

/* Main content */
.main {
  margin-top: 50px; /* Add a top margin to avoid content overlay */
}