/* =Reset
-----------------------------------------------------------------------------*/
* { margin: 0; padding: 0; text-decoration: none; font-size: 1em; outline: none; }
code, kbd, samp, pre, tt, var, textarea, input, select, isindex, listing, xmp, plaintext { font: inherit; font-size: 1em; white-space: normal; }
dfn, i, cite, var, address, em { font-style: normal; }
th, b, strong, h1, h2, h3, h4, h5, h6 { font-weight: normal; }
a, img, a img, iframe, form, fieldset, abbr, acronym, object, applet, table { border: none; }
table { border-collapse: collapse; border-spacing: 0; }
caption, th, td, center { text-align: left; vertical-align: top; }
q { quotes: "" ""; }
ul, ol, dir, menu { list-style: none; }
sub, sup { vertical-align: baseline; }
a { color: inherit; }
marquee { overflow: inherit !important; -moz-binding: none; }
blink { text-decoration: none; }
nobr { white-space: normal; }

/* =Hacks
-----------------------------------------------------------------------------*/
/* hack for forcing scroll bars to stop page jog - http://www.splintered.co.uk/experiments/49/ */
html { min-height: 100%; }

/* Fix Firefox odd spaces */
img { vertical-align: bottom; }

/* disables some nasty font attributes in standard browsers */
font { color: inherit !important; font: inherit !important; color: inherit !important; } 

body{margin:0px; padding:0px; font-family: 'Mulish', Arial, Geneva, Verdana, Helvetica, sans-serif; overflow-y:auto;}

/*** Header ***/
/* #header{background-color:#01426A; height:120px; width:100%; position:fixed; z-index:10;top:0;left:0;}
#headerContent{margin:auto; width:1024px;} */

/* #logo{ height:120px; position:relative; z-index:6;} */

.content {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-wrap: nowrap; 
  overflow: hidden;
}

.content__left {
  flex: 1 1 40%; 
  max-width: 600px; 
  min-width: 200px; 
  height: 100%;
  background: #0BA194;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
  padding-left: 80px;
  box-sizing: border-box;
  position: relative;
}
.content__logo {
  max-width: 250px;
  margin-bottom: 50px;
}
.content__info {
  color: #fff;
  letter-spacing: 0.03em;
  line-height: 1.4em;
  word-wrap: break-word; 
  overflow-wrap: break-word;
  max-width: 100%; 
}

.content__info--text {
  word-wrap: break-word; 
  overflow-wrap: break-word;
  max-width: 100%; 
}

.content__info--section {
  display: flex;
  margin-bottom: 20px;
}
.content__info--icon {
  width: 20px;
  color: #fff;
  margin-right: 20px;
}
.content__circle {
  width: 15vw; 
  height: 15vw; 
  max-width: 100px; 
  max-height: 100px;
  min-width: 20px; 
  min-height: 20px;
  border-radius: 50%;
  background: #e6e6e6;
  position: absolute;
  left: 100%; 
  top: 50%; 
  transform: translate(-50%, -60%); 
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50; 
}


.content__circle--inner {
  width: 10vw; 
  height: 10vw; 
  max-width: 80px; 
  max-height: 80px;
  min-width: 20px; 
  min-height: 20px;
  border-radius: 50%;
  background: #ff6600;
  padding: 1vw; 
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
}

.content__circle--img {
  position: relative;
  top: -2px;
  max-width: 100%;
  width: auto;
}
.content__right {
  flex: 1 1 60%;
  height: 100%;
  background: #e6e6e6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  box-sizing: border-box;
}
.content__welcome {
  max-width: 400px;
}
.content__welcome--title {
  font-size: 2.5rem; 
  font-weight: 700;
  margin-bottom: 5px;
}

.content__welcome--intro {
  font-size: 1.5rem; 
  margin-bottom: 30px;
  opacity: 0.8;
  text-align: center;
}

.content__input--name {
  font-size: 18px;
}
.content__input--input {
  appearance: none;
  box-sizing: border-box;
  border-radius: 5px;
  background: #ffffff;
  border: 1px solid #6f6f6f;
  outline: none;
  font-size: 1rem;
  line-height: 1.5;
  width: 100%; 
  max-width: 500px; 
  padding: 10px 15px;
  margin: 5px 0 0 0;
  transition: all 0.2s ease-in-out;
}
.content__input.username {
  margin-bottom: 15px;
}
.content__forgot {
  cursor:pointer;
  margin-top: 5px;
  text-decoration:underline;
}
.content__copyright {
  position: absolute;
  bottom: 15px;
  right: 15px;
  opacity: 0.8;
  font-size: 14px;
  display: flex;
}

.content__copyright > p:first-child {
  margin-right: 30px;
}


#btnLogIn {
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  text-align: center;
  width: 100%; 
  max-width: 500px; 
  transition: all 0.2s ease-in-out;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
  font-weight: 600;
  background: #ff6600;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.5;
  margin-top: 30px;
  cursor: pointer;
}
#btnLogIn:hover {
  background: #e65c00;
  transform: translateY(-2px);
  box-shadow: 0 13px 18px rgba(0, 0, 0, 0.18);
}

@media (max-width: 480px) {
  .content__welcome--title {
    font-size: 1.5rem; 
    margin-bottom: 5px; 
  }

  h2 {
    font-size: 12px;
  }


  .content__welcome--intro {
    font-size: 1rem; 
    margin-bottom: 10px; 
  }
  .content__circle--inner {
    width: 6vw;
    height: 6vw;
    max-width: 50px;
    max-height: 50px;
    min-width: 20px;
    min-height: 20px;
  }
  #btnLogIn {
    font-size: 0.9rem; 
    padding: 6px 10px; 
    max-width: 40%; 
  }
  .content__circle {
    width: 10vw;
    height: 10vw;
    max-width: 60px;
    max-height: 60px;
    min-width: 20px;
    min-height: 20px;
    right: -3vw; 
  }
  .content__input--input {
    font-size: 0.8rem; 
    padding: 6px 10px; 
    max-width: 100%; 
  }
}

@media (max-width: 768px) {
  .content__welcome--title {
    font-size: 2rem; 
    margin-bottom: 8px; 
  }

  h2 {
    font-size: 14px;
  }

  .content__welcome--intro {
    font-size: 1.2rem; 
    margin-bottom: 15px; 
  }
  .content__copyright {
    display: none; 
  }
  .content__info--section {
    display: none; 
  }
  .content__circle {
    width: 12vw; 
    height: 12vw;
    max-width: 80px;
    max-height: 80px;
    min-width: 20px;
    min-height: 20px;
    right: -5vw; 
  }
  .content__circle--inner {
    width: 8vw; 
    height: 8vw;
    max-width: 60px; 
    max-height: 60px;
    min-width: 20px; 
    min-height: 20px;
  }
  .content__input--input {
    font-size: 0.9rem; 
    padding: 8px 12px; 
    max-width: 100%; 
  }
}

#menu{position:fixed; width:690px; margin-left:296px; margin-top:43px; color:#FFFFFF; font-size:16px; font-weight:bold;}
#menu div{margin-left:40px;}
#menu a {color:#FFFFFF; text-decoration:none;}
#menu a:hover{color:#75b4e2;}

/*** Footer ***/
#footer{background-color:#01426A; height:46px; position:fixed; z-index:5; width:100%; min-width:1024px; bottom:0px;}
#footerContent{margin:auto; width: 850px;}
#footer div{color:#FFFFFF; font-size:14px;}
#footer table{margin-top:11px;}
#footerLeft{width:25%; text-align: left;}
#footerCenter{width:35%; text-align: center;}
#footerRight{width:5%; text-align: right;}
#sitemap a {cursor:pointer; color:#FFFFFF; text-decoration:none;}
#sitemap a:hover{color:#75b4e2;}

