
.wrapper {
    font: normal 12px/18px Arial, "Helvetica Neue", Helvetica, sans-serif;
    color:#000;
    width:364px;
    position: fixed;
    top: 50%;
    left: 50%;
    margin: -197px 0 0 -182px;
	padding: 8px 0px 18px;
	background: url("../../images/bottom-shadow.png") no-repeat center top;
        display: block;

}
a {
    text-decoration: none;
    color:#327687;
}

a:hover {
    text-decoration: underline;
}

h1 {
    height: 72px;
    background: url("../../images/logo.png") no-repeat center top;
    margin: 50px 0 40px;
    text-indent: -999em;
    font-size: 28px;
    color: #04468c;
}
.caption {
    color: #6e807d;
    margin: 10px 0 0;
    text-align: center;
    letter-spacing: 2px;
}
#content {
    min-height: 367px;
	margin: 0 10px;
	background: url("../../images/gray-shade.png") no-repeat right 4px #f3f1f2;
	border: 4px solid #fff;

    -webkit-border-radius: 17px;
    -moz-border-radius: 17px;
    border-radius: 17px;

    -webkit-box-shadow:0px 1px 4px #a1a1a1;
    -moz-box-shadow:0px 1px 4px #a1a1a1;
    box-shadow:0px 1px 10px #a1a1a1;
    overflow: hidden;
}

form {
    margin: 0px 51px;
}
.field-container {
    padding: 5px 0;
    overflow: hidden;
}
.field-container label {
    display: none;
}
.field-container input[type=text], .field-container input[type=password], .field-container input[type=email],
.field-container select {
    border: 1px solid #7d8080;
    padding: 4px 10px;
    width:208px;
    background: #fff;
    margin: 0;
}
.field-container select {
    width:228px;
}

.field-container input[type=text]:focus,.field-container input[type=password]:focus,
.field-container select:focus {
    -webkit-box-shadow:0 0 5px #7d8080;
    -moz-box-shadow:0 0 5px #6e807d;
    box-shadow:0 0 5px #6e807d;
    outline: none;
}

.field-container input[type=submit] {
    margin: 25px 0 0 67px;
    padding: 5px 25px;
    border: 0;
    font-size: 14px;
	font-weight: bold;
    color: #fff;
    background: #03b800;
    cursor: pointer;
	text-transform: uppercase;
}
.field-container input[type=submit]:hover {
    background: #1f881f;
}



::-webkit-input-placeholder {
    font-size: 14px;
    color: #c0bec2;
}

:-moz-placeholder { /* Firefox 18- */
   font-size: 14px;
    color: #c0bec2;
}

::-moz-placeholder {  /* Firefox 19+ */
   font-size: 14px;
    color: #c0bec2;
}

:-ms-input-placeholder {
   font-size: 14px;
    color: #c0bec2;
}


#loginError {
    font-size: 10px;
    text-align: center;
    color: red;
    line-height: 15px;
}

.googleAuthentication {
    display: none;
}

.qr-header {
    display: inline-block;
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    width: 80%;
}

/* The Modal (background) */
.modal {
  /*display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: fit-content; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
  color: black;
  float: right;
  font-size: 40px;
  font-weight: bold;
  display: inline-block;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

#nimble-login,
#google-login,
#both-login,
#default-login {
    display: none;
}

#google-login {
    margin-left: 18px; 
}


#loginBtn {
    margin: 25px 0 0 67px;
    padding: 5px 25px;
    border: 0;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    background: #03b800;
    cursor: pointer;
    text-transform: uppercase;
}

/* Important info box */
.important-box {
    display: flex;
    align-items: center;
    background: #fff9c4; /* light yellow */
    border: 1px solid #fdd835; /* yellow border */
    padding: 10px 16px;
    border-radius: 4px;
    font-size: 12px;
    color: #333;
    margin-bottom: 10px;
}

/* Icon */
.important-icon {
    width: 18px;
    height: 18px;
    background: #1976d2; /* blue */
    color: #ffffff;     /* white "!" */
    font-weight: bold;
    text-align: center;
    line-height: 18px;
    border-radius: 50%;
    margin-right: 8px;
    flex-shrink: 0;
}

.login-btn {
    display: block;
    margin: 10px auto;
    cursor: pointer;
}

/* OR separator */
.login-separator {
    display: flex;
    align-items: center;
    margin: 12px 0;
    font-size: 12px;
    color: #777;
}

.login-separator::before,
.login-separator::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #ccc;
}

.login-separator span {
    padding: 0 10px;
}