@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/poppins-v9-latin-regular.eot'); /* IE9 Compat Modes */
    src: local('Poppins Regular'), local('Poppins-Regular'),
         url('../fonts/poppins-v9-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         /*
         url('../fonts/poppins-v9-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
         /*url('../fonts/poppins-v9-latin-regular.woff') format('woff'), /* Modern Browsers */
         /*url('../fonts/poppins-v9-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
         url('../fonts/poppins-v9-latin-regular.svg#Poppins') format('svg'); /* Legacy iOS */
  }

  * {
      box-sizing: border-box;
  }
  body {
    margin: 0;
    padding: 0;
  }

  #container {
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      flex-flow: column nowrap;
      width: 100vw;
      height: 100vh;
      max-width: 100vw;
      max-height: 100vh;


      font-family: 'Poppins', Arial, Helvetica, sans-serif;
      justify-content: center;


      background: #fdfdfd;
      /* border: 1px solid red; */
      animation-name: Fade;
      animation-duration: 0.5s;
      animation-timing-function: ease-in;
      transition: 0.5s ease;
      position: relative;
  }
  #LoginForm {
      margin: 0 auto;
      text-align: center;
      -ms-flex: 0;
      -webkit-flex: 0;
      flex: 0;
      width: 300px; /* ie being... ie */
      /* border: 1px solid red; */
  }
  #LoginForm > form > input {
        width: 100%;
        display: block;
        /* border: 1px solid red; */
        text-align: center;

        padding: 0.7em 0;
        font-size: 0.8em;

  }

  #awp_username {
    border-radius: 0.3em 0.3em 0 0;
    border-left: 1px solid #494949;
    border-right: 1px solid #494949;
    border-top: 1px solid #494949;
    border-bottom: none;
    transition: 0.5s ease;
  }

  #awp_password {
    border-radius: 0 0 0.3em 0.3em ;
    border: 1px solid #494949;
    transition: 0.5s ease;
  }

  #awp_username:focus, #awp_password:focus {
      outline: none;
      border: 1px solid #8e0000;
  }

  #awp_username:focus {
      border-bottom: none;
  }

.btn_common_blue {
    margin-top: 0.85em;
	background: #007bff;
	border: 1px solid #026ee0;
	color: #f1f1f1;
    transition: 0.3s ease;
    border-radius: 0.3em;
    font-weight: bold;
    cursor: pointer;
}

.btn_common_blue:hover {
	background: #0b70dd;
}

.btn_common_blue:disabled {
  cursor: not-allowed;
  background: #ccc;
  color: #f1f1f1;
  border: 1px solid #ccc
}

.modeSlider {
    -webkit-appearance: none;
    /* width: 100%; */
    width: 60px;
    height: 21px;
    border-radius: 2em;
    background: #636363;
    /* border: 1px solid #494949; */
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
    transition: 0.2s ease;
    max-width:60px !important;
  }

  .modeSlider:hover {
    opacity: 1;
  }

  .modeSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 21px;
    height: 21px;
    background: #00316e;
    border-radius: 50%;
    cursor: pointer;
  }

  .modeSlider::-moz-range-thumb {
    width: 21px;
    height: 21px;
    background: #00316e;
    border-radius: 50%;
    cursor: pointer;
  }
.d_slider {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    margin: 1em;
    /* border: 1px solid red; */
    border-radius: 0 !important;
}


#LoginFooter {
    /* background: rgba(0,0,0,0.01); */
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    position: absolute;
    bottom: 0px;
    height: 60px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    width: 100vw;
    align-items: center;
}

.brand {
  max-width: 300px;
  transition: 0.5s ease;

}
@keyframes Fade {
    0% {
        opacity: 0.0;
        /* transform: translateY(-400%); */
    }
    100% {
        opacity: 1.0;
        /* transform: translateY(0%); */
    }
}


#eula-flex a {
	text-decoration: underline;
  color: #007bff;

}

#eula-flex {
  margin-top: 0.5em;
  display: flex;
  flex-direction: row;
  gap: 0.5em;
  font-size: 13px;
}


#eula_modal {
    position: absolute;
    height: 80%;
    max-height: 80%;
    /* overflow-y: auto; */
    width: 800px;
    left: calc(50% - 400px);

    top:10%;




    color: #f1f1f1;

    border-radius: 0.3em;
      /* box-shadow: 5px 5px 15px -1px rgba(0,0,0,0.69); */


}

#eula_modal_head {
  /* background: #131313; */
  background: linear-gradient(to bottom, #141414 0%,#0a0a0a 100%);
  color: #f1f1f1;
  display: flex;
  flex-direction: row-reverse;
  height: 2em;
  padding-top: 0.2em;
  padding-right: .5em;
  padding-left: 1em;
  border-bottom: 1px solid rgba(204, 204, 204, 0.507);
  border-radius: 0.4em 0.4em 0 0;
  box-shadow: 5px 5px 15px -1px rgba(0,0,0,0.69);
}


#eula_modal_body {
  padding: 1em;
  max-height: 95%;
  overflow-y: auto;
  background: #030303cc;
  border-radius:0 0  0.4em 0.4em;
  box-shadow: 5px 5px 15px -1px rgba(0,0,0,0.69);
}

.eula_close_modal {
  font-weight: bold;
  color: #700505;
  transition: 0.15s ease;
  cursor: pointer;
}

.eula_close_modal:hover {
  color: red;
}
