:root {
  --dark_color: #00313C;
  --light_color: #00A499;
  --bright_color1: #FCB513;
  --bright_color2: #F26321;
}



/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */
body {

  background-image: url('/fe_auth/static/skynet_img/Background.svg');
  background-repeat: repeat;
  font-family: "Open Sans", sans-serif;

}

.LoginBox {
  -webkit-box-shadow: 9px 7px 47px -1px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 9px 7px 47px -1px rgba(0, 0, 0, 0.75);
  box-shadow: 9px 7px 47px -1px rgba(0, 0, 0, 0.75);
  border-radius: 10px 10px 10px 10px;
}

.verticalcenter {
  min-height: 100%;
  /* Fallback for browsers do NOT support vh unit */
  min-height: 100vh;
  /* These two lines are counted as one :-)       */

  display: flex;
  align-items: center;
}



.Header {
  background: var(--dark_color);
  border-radius: 10px 10px 0 0;
  padding-top: 20px;
  /* padding-bottom: 20px; */
}


.Middle {
  background: var(--dark_color);
  border-top: 2px solid var(--light_color);
  border-bottom: 2px solid var(--light_color);
}

.Middle_Form {
  margin-top: 20px;
  margin-bottom: 20px;
}

.Footer {
  background: var(--dark_color);
  border-top: 1px solid #2D2F32;
  border-radius: 0 0 10px 10px;

  padding-top: 20px;
  padding-bottom: 20px;
}


.Header p {
  color: #FFFFFF;
  font-size: 24px;
}

.Footer p {
  color: #586069;
  margin: 0;
  padding-left: 12px;
  text-transform: uppercase;
}


.Footer a {
  color: #586069;
  margin: 0;
  padding-left: 12px;
  text-transform: uppercase;
}

/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */


.Middle_Form ::-webkit-input-placeholder,
.Middle_Form ::-ms-input-placeholder,
.Middle_Form ::-moz-placeholder,
.Middle_Form :-moz-placeholder {
  color: var(--dark_color);
}

.Middle_Form input[name="username"],
.Middle_Form input[type="password"],
.Middle_Form input[type="submit"] {
  background: #f2f2f2;
  border-radius: 5px 5px 0 0;
  border: none;
  color: var(--dark_color);
  display: block;
  margin: 0 20px;
  outline: none;

  padding-top: 15px;
  padding-bottom: 15px;
  text-indent: 20px;

  width: 90%;

  font-family: "Source Sans Pro";
  font-size: 16px;
}

.Middle_Form input[type="password"] {
  border-top: 1px solid #acabab;
  border-radius: 0 0 5px 5px;
}

.Middle_Form input[type="submit"] {
  background: var(--light_color);
  border-radius: 5px;
  border-bottom: 1px solid #000;
  color: #fff;

  margin-top: 15px;

  font-size: 13px;
  text-transform: uppercase;
}

.Middle_Form input[type="submit"]:active {
  background: var(--bright_color1);
}


.format-input {
  border-radius: 10px;
  border: 2px solid #26A499;
  background: #05313C;
  color: white;
  text-align: center;
  padding: 5px;
  outline: none;
}
.format-input:focus {
  box-shadow: 0 0 7px #26A499;
}
.format-input:hover {
  box-shadow: 0 0 7px #26A499;
}


h3 {
  color: crimson;
  text-align: center;
}