/* Based on public domain content from meyerweb.com */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1.4;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Material Design Shadows*/

.card-1 {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.2s ease-in-out;
}
.card-2 {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.card-3 {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

/*Global Styles*/

* {
  text-rendering: optimizeLegibility;
  -o-text-rendering: optimizeLegibility;
  -ms-text-rendering: optimizeLegibility;
  -moz-text-rendering: optimizeLegibility;
  -webkit-text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
}
body,
html {
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif !important;
  font-weight: 300;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  line-height: 1.4;
  width: 100%;
  height: 100%;
  margin: 0;
  background-color: #1E1E1E;
}
div.container {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  height: 100%;
}
.pageContainer {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: column;
          -webkit-flex-flow: column;
          flex-flow: column;
  -ms-flex: 1;
  -webkit-flex: 1;
          flex: 1;
  margin: auto;
  padding: 50px 0;
}
ul.messagelist {
  margin-bottom: 20px;
}
ul.messagelist li {
  display: table;
  margin: 0 auto;
  border-radius: 3px;
  padding: 10px 30px;
  min-width: 450px;
  max-width: 830px;
  margin-bottom: 20px;
  text-align: center;
  color: rgba(255, 255, 255, .78);
}
ul.messagelist li.success,
ul.messagelist li.info {
  border: 2px solid rgba(76, 175, 80, 1);
}
ul.messagelist li.debug {
  border: 2px solid rgba(158, 158, 158, 1);
}
ul.messagelist li.warning {
  border: 2px solid rgba(255, 193, 7, 1);
}
ul.messagelist li.error {
  border: 2px solid rgba(255, 0, 0, 1);
}
ul.formError {
  margin-bottom: 20px;
}
ul.formError li {
  display: table;
  margin: 0 auto;
  background-color: rgba(255, 0, 0, .2);
  border: 2px solid rgba(255, 0, 0, 1);
  color: rgba(255, 255, 255, .78);
  border-radius: 3px;
  padding: 10px 30px;
  min-width: 450px;
  max-width: 800px;
  margin-bottom: 20px;
  text-align: center;
}
.arrow-down {
  position: absolute;
  bottom: -12px;
  left: 58px;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #E60F16;
}
.inputError {
  position: relative;
  display: block;
  background-color: rgba(255, 0, 0, .9);
  color: rgba(255, 255, 255, .87);
  padding: 7px 20px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, .2);
  border-left: 0px;
  border-right: 0px;
  max-width: 450px;
  box-sizing: border-box;
}
.inputError ul li {
  padding: 7px 0;
  border-top: 1px solid rgba(0, 0, 0, .1);
}
.inputError ul li:nth-child(1) {
  border-top-width: 0px;
}

.formWithDisclaimer {
  width: 45%;
}
.formContainerWidthCls{
  width: 450px;
}

.formContainer {
  background-color: '#212121';
  min-width: 450px;
  min-height: 210px;
  margin: 0 auto;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: column nowrap;
          -webkit-flex-flow: column nowrap;
          flex-flow: column nowrap;
  border-radius: 5px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.formContainer img {
  margin: 35px auto;
}

.userNameField, .passwordField {
  display: flex;
  align-items: center;
}

.userNameContainer,
.passwordContainer {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row nowrap;
          -webkit-flex-flow: row nowrap;
          flex-flow: row nowrap;
  background-color: #353535;
  margin-top: 15px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.2s ease-in-out;
  border-radius: 1px;
  margin: 15px 50px;
  overflow: hidden;
  width: 100%;
}
.userNameContainer input:hover,
.passwordContainer input:hover {
  /* background-color: #efefef; */
}
.userNameContainer input,
.passwordContainer input {
  -ms-flex: 1 0 0%;
      -webkit-flex: 1 0 0%;
          flex: 1 0 0%;
  height: inherit !important;
  outline: none;
  border-width: 0px;
  -webkit-appearance: none;
  background-color: #353535;
  font-size: 14px;
  padding: 0 10px;
  color: rgba(255, 255, 255, .60);
  -ms-flex-order: 2;
  -webkit-order: 2;
          order: 2;
  transition: all .2s;
  border-left: 0px !important
}
.userNameContainer input:focus,
.passwordContainer input:focus {
  background-color: #353535;
  color: rgba(255, 255, 255, 0.78);
}
.userNameContainer .icon,
.passwordContainer .icon {
  padding: 5px 10px;
  background-color: '#353535';
  border-top-left-radius: 1px;
  border-bottom-left-radius: 1px;
  -ms-flex-order: 1;
  -webkit-order: 1;
          order: 1;
  transition: all .2s;
  border-right: 1px solid rgba(0, 0, 0, .07);
}
.icon svg {
  width: 20px;
  height: 20px;
  position: relative;
  top: 2px;
}
.icon svg path {
  fill: rgba(255, 255, 255, .68);
  transition: all .2s;
}

/*.userNameContainer input:focus + .icon, .passwordContainer input:focus + .icon {
    background-color: #efefef;
}*/

.userNameContainer input:focus+ .icon svg path,
.passwordContainer input:focus+ .icon svg path {
  fill: rbga(255, 255, 255, 0.38);
}
.button {
  background-color: transparent;
  width: 100%;
  height: 50px;
  border: none;
}
.button:hover {
  cursor: pointer;
}
.button input {
  width: 100%;
  height: 100%;
  outline: none;
  border-width: 0px;
  -webkit-appearance: none;
  font-size: 16px;
  color: rgba(255, 255, 255, .78);
  background-color: rgba(0, 0, 0, .1);
  border: none;
  border-top: 1px solid rgba(0, 0, 0, .15);
  transition: all .2s;
}
.button input:hover, .button input:focus {
  cursor: pointer;
  background-color: rgba(0, 0, 0, .3);
}
.disclaimerTextContainer p {
  color: rgba(255, 255, 255, .78);
  max-height: 130px;
  overflow-y: auto;
  word-wrap: break-word;
}
.containerForlabelCls {
  display: flex;
  padding: 0 30px;
  margin-bottom: 7px;
}
.containerForlabelCls p {
  opacity: 0.7;
}

.containerForlabelCls pre {
    color: rgba(255, 255, 255, .78);
    overflow-x: auto;
    white-space: pre-line;
    word-wrap: break-word;
    font-size: 15px;
    max-height: 222px;
    opacity: 0.8;
    background: #3b3b3b;
    margin-top: 10px;
    padding: 10px;
}
.labelWhiteCls {
  color: rgba(255, 255, 255, .78);
}

.disclaimerText {
  color: rgba(255, 255, 255, .78);
  padding-left: 25px;
  font-weight: 600;
  opacity: 0.9;
}
.errorlabel {
  padding-left: 62px;
}

.checkboxInput {
  width: 18px;
  height: 18px;
  margin: 10px 10px 0px 30px;
  background-color: #333333;
  border-radius: 4px;
}
.checkboxInput :checked {
 background-color: #3498db;
 border-color: #3498db;
}
.custom-scrollbar::-webkit-scrollbar {
  width: 0px;
}

a:link,a:visited { color: inherit; }

.logo {
  width: 100%;
  text-align: center;
  margin: 35px auto 12px;
}

.logo img {
  margin: 0 auto;
}

.logo span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, .6);
}

#dod-notice-container {
  width: 600px;
  color: rgba(255, 255, 255, .8);
  font-size: 0.85em;
}

#dod-notice-container h3 {
  margin: 25px 40px 10px;
  font-weight: bold;
  font-size: 1.2em;
  color: rgba(255, 255, 255, .85);
}

#dod-notice-container p {
  margin: 5px 40px;
}

#dod-notice-container ul {
  margin: 5px 40px 20px;
  list-style: disc inside;
}

#dod-notice-container li {
  margin: 4px 0;
}

#dod-notice-container button {
  background-color: rgba(0, 0, 0, .2);
  border: none;
  border-top: 1px solid rgba(0, 0, 0, .2);
  padding: 12px;
  font-size: 1.2em;
  color: rgba(255, 255, 255, .8);
  cursor: pointer;
}

#dod-notice-container button:focus{
    outline: none;
}

.sso-container {
  background-color: '#212121';
  min-width: 500px;
  width: 500px;
  min-height: 300px;
  margin: 0 auto;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: column nowrap;
          -webkit-flex-flow: column nowrap;
          flex-flow: column nowrap;
  border-radius: 5px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.sso-card-2 {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.sso-button {
  margin-top: 5%;
  margin-left: 15%;
  margin-right: 15%;
  background-color: transparent;
  width: 100%;
  height: 50px;
  border: none;
}

.sso-button:hover {
  cursor: pointer;
}

.sso-button input {
  width: 70%;
  height: 100%;
  outline: none;
  text-align: center;
  border-width: 0px;
  -webkit-appearance: none;
  font-size: 15px;
  color: rgba(255, 255, 255, .78);
  background-color: rgba(0, 0, 0, .1);
  border: none;
  border-top: 1px solid rgba(0, 0, 0, .15);
  transition: all .2s;
}

.sso-button input:hover, .sso-button input:focus {
  cursor: pointer;
  background-color: rgba(0, 0, 0, .3);
}

.sso-text {
  font-size: 15px;
  text-align: center;
  color: rgba(255, 255, 255, .78);
}

.sso-link:link, .sso-link:visited {
  color: rgba(255,0,0,0.988);
  background-color: transparent;
  text-decoration: none;
}

.sso-link:hover, .sso-link:visited:hover {
  color: rgba(154,10,10,0.988);
  background-color: transparent;
  text-decoration: none;
}

.sso-link:active {
  color: rgba(104,5,5,0.988);
  background-color: transparent;
  text-decoration: none;
}