    html {
	height: 100%;
    }
    body {
	min-height: 100%;
	display:flex;
	flex-direction:column;
        font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	margin:0;
	background:#f3f6fa;
    }
    .inputColumn {
        margin-left: 8px;
        width:100%;
        max-width:400px;
        margin: 0;
        font-size: 16px;
        font-weight: 400;
        line-height: 30px;
	box-sizing:border-box;
	border-radius:2px;
	border:1px solid darkgray;
	margin-bottom:10px;
	background:white;
	padding-left:10px;
	padding-right:10px;
    }
    .error {
        color: red;
        border-color:red;
    }
    form {
        max-width:400px;
    }
    .content{
        flex: 1;
        width:100%;
    }
    .formcont{
	flex: 1;
	max-width:400px;
	width:100%;
	margin:auto;
    }
    .maincont{
	flex: 1;
	text-align:center;
	max-width:700px;
	width:100%;
	margin:auto;
    }
    .btn{
	width:49%;
	box-sizing:border-box;
	background-color:darkgreen;
	border-color:darkgreen;
	height:40px;
	color:white;
	border: 1px solid darkgreen;
	border-radius:2px;
    }
    .buttondiv {
	text-align:center;
	padding-top:20px;
    }
    .navinner {
	max-width:1200px;
	margin:auto;
	width:100%;
    }
    .navbar {
	position:fixed;
	width:100%;
	top:0px;
	padding:0;
	background:white;
	border-bottom:5px solid rgb(85,139,87);
	z-index:999;
    }
    .navbar-brand {
        padding:0px;
    }
    .navbar-brand img {
	max-height: 67px;
	padding:3px;
    }
    .herosection {
	padding-top:95px;
	text-align:center;
    }
    .formbox {
	padding:5px;
    }
    label {
	display:block;
	text-align:left;	
	margin-bottom:0px;
    }

    .msg {
	position:fixed;
	padding:25px;
	z-index:9999;
	background-color:azure;
	border:1px solid green;
	border-radius:3px;
	max-width:300px;
	margin:auto;
	left:50%;
	margin-left:-150px;
	box-sizing:border-box;
	margin-top:15px;
    }

    .footer {
	text-align:center;
	min-height:30px;
	margin-top:30px;
    }


    button.closebttn {
    position: absolute;
    top: 5px;
    right: 0;
    background: none;
    border: none;
    color: darkgreen;
    }

/* optional */
.shell {
  position: relative;
  line-height: 1;
}
  .shell span {
    position: absolute;
    left: 3px;
    top: 1px;
    color: #ccc;
    pointer-events: none;
    z-index: 9; }
    .shell span i {
      font-style: normal;
      /* any of these 3 will work */
      opacity: 0;
      visibility: hidden; }

input.masked,
.shell span {
  padding-left:10px;
  font-size: 16px;
  font-family: monospace;
  padding-right: 10px;
  text-transform: uppercase; }



