/* Import stuff */
@import url('https://fonts.googleapis.com/css?family=Montserrat:200,400,500,700&display=swap&subset=latin-ext');
/**
 * Fix fonts that render as bold in Firefox
 *
 * Put this near the top of your style.css
 * Before any overriding styles
 */

html {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  font-weight: 400;
}

/**
 * Firefox specific rule
 */

@-moz-document url-prefix() {
  body,input {
    font-weight: 500 !important;
  }
}
/* HTML DEFAULT CLASSES */
* {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  transition: all cubic-bezier(.17,.84,.44,1) 0.4s;
  cursor: default;
  box-sizing: border-box;
}

:root {
  /* COLORS BEGIN */
  --white: white;
  --darkBlue: #152d63;
  --lightBlue: #4873ff;
  --lighterBlue: #aad2ff;
  --darkGray: #222222;
  --semiDarkGray: #4e4e4e;
  --semiLightGray: #a0a0a0;
  --lightGray: #eeeeee;
  --redBright: #ff0000;
  --redLight: #ff7373;
  --transparent: #ffffff00;
  /* COLORS END */

  /* MARGINS BEGIN */
  --hugeMargin: 2em;
  --bigMargin: 1em;
  --smallMargin: 0.5em;
  --smallerMargin: 0.1em;
  /* MARGINS END */

  /* PADDINGS BEGIN */
  --giantPadding: 3em;
  --hugePadding: 2em;
  --bigPadding: 1em;
  --smallPadding: 0.5em;
  --smallerPadding: 0.1em;
  /* PADDINGS END */

  /* FONT SIZES BEGIN */
  --fontHeaderOne: 32px;
  --fontHeaderTwo: 28px;
  --fontHeaderThree: 22px;
  --fontHeaderFour: 18px;
  --fontParagraph: 15px;
  --fontLink: 14px;
  --fontLabel: 12px;
  --fontInput: 14px;
  /* FONT SIZES END */

  /* FONT WEIGHT BEGIN */
  --fontWeightLight: 200;
  --fontWeightRegular: 400;
  --fontWeightBold: 700;
  /* FONT WEIGHT END */

  /* LINE HEIGHT BEGIN */
  --bigLineHeight: 2.5;
  --smallLineHeight: 1.5;
  /* LINE HEIGHT END */

  /* BORDERS BEGIN */
  --borderRadiusSmall: 5px;
  --borderRadiusBig: 100px;
  /* BORDERS END */

  /* SHADOWS BEGIN */
  --shadowBig: 0px 11px 14px 0px #74747459;
  --shadowSmall: 0px 6px 20px 0px #58585852;;
  /* SHADOWS END */
}


body {
background-color: var(--white);
width: auto;
max-width: 1650px;
margin: 0 auto;
}

input, select, textarea {
display: inline-block;
padding: var(--smallPadding);
border-radius: var(--borderRadiusSmall);
border: 1px solid var(--darkGray);
}

textarea {
resize: none;
}

input:hover, select:hover,
textarea:hover {
cursor: pointer;
}

input:focus:hover, textarea:focus:hover {
cursor: text;
}

input:focus, select:focus,
textarea:focus {
border: 1px var(--lightBlue) solid;
box-shadow: var(--shadowSmall);
}

i {
margin-left: var(--smallMargin);
color: var(--semiDarkGray);
}

label {
display: block;
color: var(--semiDarkGray);
margin-bottom: var(--smallMargin);
margin-left: var(--smallMargin);
font-size: var(--fontInput);
}

[type="button"] {
background-color: var(--white);
padding: var(--bigPadding);
border-radius: var(--borderRadiusBig);
font-weight: var(--fontWeightBold);
color: var(--lightBlue);
border: 1px solid var(--lighterBlue);
}

[type="checkbox"]:hover {
cursor: pointer;
}
[type="text"],[type="password"]
{
  width:250px;
}
hr {
margin-bottom: 1em;
border: none;
border-style: solid;
border-color: var(--lightGray);
border-width: 1px;
}

h1, h2, h3, h4, .headerMain {
color: var(--darkBlue);
/* line-height: var(--bigLineHeight); */
font-weight: var(--fontWeightBold);
}

h1, .headerMain {
font-size: var(--fontHeaderOne);
}

h2 {
font-size: var(--fontHeaderTwo);
}

h3 {
font-size: var(--fontHeaderThree);
}

h4 {
font-size: var(--fontHeaderFour);
}

p {
font-size: var(--fontParagraph);
line-height: var(--smallLineHeight);
}

a {
font-size: var(--fontLink);
}

a:hover {
cursor: pointer;
color: var(--lightBlue);
}

/* Mini classes */
.smallText {  font-size: var(--fontLabel);}
.heading, .ending {  margin-bottom: var(--smallMargin);}
.hidden { display: none  !important;}
.vh {height: 90vh}
/* Flexbox */
.flex {  display: flex;}
.wrap {  flex-wrap: wrap;}
.left {  justify-content: left;}
.right {  justify-content: right;}
.centerJustify {  justify-content: center;}
.spaceBetweenJustify {  justify-content: space-between;}
.spaceAroundJustify {  justify-content: space-around;}
.centerAlign {  align-content: center;}
.centerAlignItems { align-items: center;}
.bottomAlignItems { align-items: baseline;}
.columnDirection { flex-direction: column;}
.textCenter{  text-align:center;}
.colorRed{ color:var(--redBright);}
.colorGreen{ color:green;}

/* Grid */
.grid { display: grid;}

/* Buttons */
.primaryButton {
    background: var(--lightBlue);
    color: white;
    border: none;
    box-shadow: var(--shadowSmall);
}
/* nav */
nav {
    margin: var(--bigMargin) auto 0;
    padding: 0 var(--bigPadding);
    width: auto;
}

nav img {
    height: 50px;
    cursor:pointer;
}

/* hero section */
.container {
grid-template-columns: 100%;
grid-template-rows: 85vh ;
/* grid-gap: var(--hugeMargin); */
margin: 0 auto;
width: auto;
}

.heroFirst h1 {
    padding-bottom: var(--smallPadding);
}

.heroFirst {
    align-self: center;
    padding:0 2.5%;
    margin: 0 auto;
}

.heroSecond .slide {
    width: 100%;
}


.email, .password {
    margin-bottom: var(--smallMargin);
}
.input-error{
	border: 1px solid #f00; !important;
}

/* footer */

.footerContainer
{
  margin:var(--hugeMargin);
}
footer
{
  width: auto;
  margin: 0 auto;
  color: var(--semiDarkGray);
}
footer p
{
  margin: var(--hugeMargin);
  text-align: center;
}
/* password text and strength */
.blurb-wrapper
{
  flex-direction:column;
  width:75%;
  display:none;
  text-align:center;
}
.blurb-img
{
  height: 150px;
  width: 150px;
  background-image: url(../pix/ok.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 auto;
}
.blurb-text-wrapper
{
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 50%;
}
.blurb-label
{
  font-size:18px;
}
.blurb-description
{
  font-size:14px;
}
.blurb-end
{
  font-size:14px;
  font-weight:bold;
}
.input-wrapper
{
  width:250px;
  height:40px;
}
.password-eye
{
  float: right;
  bottom: 31px;
  right: 4px;
  height: 30px;
  width: 30px;
  position: relative;
  z-index: 2;
  background: url(../pix/eye.png);
  cursor:pointer;
}
.password-strength
{
  width:250px;
  padding-top: var(--smallPadding);
}
.password-bar, .password-bar-fill
{
  border-radius:10px;
  background-color:#444;
  height:5px;
  margin:3px 0;
}
.password-bar-fill
{
  background-color:#4caf50;
  width:0%;
  max-width: 100%;
}
.password-strength-text, .password-length
{
  font-size:10px
}
.password-length
{
  color:#740505;
}

.error-msg
{
  height:20px;
  color:#f00;
  font-size:10px;
  display:none;
  text-align: center;
}
.info-msg
{
  color:#0f0;
  height:20px;
  font-size:10px;
  display:none;
  text-align: center;
}
#logo
{
  cursor:pointer;
}
@media screen and (max-width:1200px)
{
  .bottomContainer
  {
    grid-template-columns: 100%;
    grid-template-rows: auto;
  }
  .container
  {
    grid-template-columns: 100%;
    grid-template-rows: auto;
    padding:var(--hugePadding) var(--bigPadding);
    height:80vh;
  }
  .heroFirst
  {
    grid-row: 1;
    display:flex;
    flex-direction: column;
    padding-top:var(--giantPadding);
  }
  [type="text"],[type="password"],.input-wrapper,.password-strength
  {
    width:100%;
  }
  .primaryButton
  {
    width:150px;
    margin: 0;
    align-self: center;
  }
  h1
  {
    font-size:var(--fontHeaderThree);
  }
  nav > img
  {
    height:50px;
  }
  nav > *
  {
    padding:0 var(--smallPadding);
  }
}
@media screen and (max-width:1200px) and (min-width:480px)
{
  .heroFirst
  {
    display: flex;
  }
  [type="text"], [type="password"],.password-strength,.input-wrapper
  {
    width:250px;
  }

}
@media screen and (max-width:850px) and (min-width:480px)
{
  nav > img
  {
    height:40px;
  }
}
@media screen and (max-width:480px)
{
  nav > img
  {
    height:35px;
  }
}
.loader-background{
  position:fixed;
  width:100vw;
  height:100vh;
  top:0;
  left:0;
  background-color:rgba(210, 213, 214, 0.397);
  z-index:100;
  display:flex;
  align-items: center;
  justify-content: center;
}
.rotator
{
  width: 120px;
  height: 120px;
  background-image: url(/pix/rotator2.gif);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  align-self: center;
}
