* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

.navbarGr {
  overflow: hidden;
  background-color: #333;
  font-family: Arial, Helvetica, sans-serif;
}

.navbarGr a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 16px;  
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font: inherit;
  margin: 0;
}

.navbarGr a:hover, .dropdown:hover .dropbtn {
  background-color: red;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  width: 100%;
  left: 0;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content .header {
  background: red;
  padding: 16px;
  color: white;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Create three equal columns that floats next to each other */
.column {
  float: left;
  width: 33.33%;
  padding: 10px;
  background-color: #ccc;
  height: 250px;
}

.column a {
  float: none;
  color: black;
  padding: 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.column a:hover {
  background-color: #ddd;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
    height: auto;
  }
}
card-container.card {
    max-width: 350px;
    padding: 40px 40px;
}

.card {
    background-color: #F7F7F7;
    /* just in case there no content*/
    padding: 20px 25px 30px;
    margin: 0 auto 25px;
    margin-top: 50px;
    /* shadows and rounded borders */
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    -moz-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
}

.logo-img {
    width: 250px;
    height: 100px;
    margin: 0 auto 10px;
    display: block;
}

.form-signin #inputEmail,
.form-signin #inputPassword,
.form-signin #username,
.form-signin #password,
.form-signin #emailAddress, 
.form-signin #otppswd {
    direction: ltr;
    height: 44px;
    font-size: 16px;
}

.form-signin input[type=email],
.form-signin input[type=password],
.form-signin input[type=text],
.form-signin button {
    width: 100%;
    display: block;
    margin-bottom: 10px;
    z-index: 1;
    position: relative;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.form-signin .form-control:focus {
    border-color: rgb(104, 145, 162);
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgb(104, 145, 162);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgb(104, 145, 162);
}

.footer {
	background-color: #3c4749;
	color: white;
	bottom: 2px;
	position: fixed;
	width: 100%;
	font-style: italic;
	font-weight: bold;
	font-family: sans-serif;
	-webkit-font-smoothing: antialiased;
	text-shadow: white 0px 0px 0.1px;
	-moz-osx-font-smoothing: grayscale;
	text-align: center;
}

.footer img {
    position: absolute; 
    right: 3%; 
    bottom: -2px !important;
}
@media screen and (max-width:480px) {  
  .footer img {
    display: none;
  }
}

.btn-primary {
    color: #fff;
    background-color: #006a50;
    border-color: #006a50;
}
.btn-primary:hover {
    color: #fff;
    background-color: #00a079;
    border-color:#00a079;
}

.errorMessage {
    background: #fff3f3;
    border-color: rgb(205, 49, 42);
    border-color: rgba(205, 49, 42, 0.75);
    border-width: 1px;
    border-radius: 2px;
    border-style: solid;
    padding: 5px;
  }

.content {
    margin: auto;
    width: 1024px;
    padding: 5px 15px;
}
  
.contentHeader {
          border-bottom: 1px dotted #999999;
          margin-bottom: 15px;
}
  
.pageTitle {
          color: #222222;
          font-family: arial;
          font-size: 24px;
          font-weight: bold;
}

.userid {
    font-weight:bold;
    float:right;
}

.instructions {
    font-family: arial;
    font-size: 12px;
    color: #222222;
    margin-left: 15px;
}
.instructionsEmail {
  font-weight: bold
}

.instructions-size {
    font-family: arial;
    font-size: 12px;
    color: #222222;
    margin-left: 15px;
    width: 600px;
}

.sectionTitle {
    font-weight:bold;
    margin-bottom: 5px;
    margin-top: 10px;
}

.controls {
    margin: 10px 0;  
}
  