@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Share+Tech&family=Smooch+Sans:wght@100..900&display=swap');


/* GENERAL STYLES */

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  
  font-family: "Share Tech", sans-serif;
}


a {
   text-decoration: none;
   color: rgb(0, 0, 0);
}

a:hover {
  color: rgb(0, 0, 0);
  text-decoration: underline;
}

.logintag {
  text-align: center;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.logintagline h2 {
  padding-top: 0px;
  margin-top: 0px;
}
.logintagline {
  width: 50%;
  text-align: center;
  font-weight: 200;
}

/* HEADER */

.mainheaderlogin {
  display: flex;
  flex-direction: column;
  margin-bottom: 35px;
}


.headerlogin {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}


.loginheadline {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  text-align: center;

}
.identitylogin {
    padding-left: 0 !important;
  font-size: 64px;
  font-family: "Share Tech", sans-serif;
  font-weight: 400;
  text-align: center !important;
}

.identitytaglinelogin {
  padding: 0;
  margin: 0;
}


  .subnav li {
    display: inline; 
    list-style-type: none;
    font-size: 18px;
  }
  
  .subnav li:after {
    content: " | "; 
  }
  
  .subnav li:last-child:before { 
    content: ""; 
  }

  .subnav li:last-child:after { 
    content: ""; 
  }



/* MAIN CONTENT */

.main {
  display: flex;
  flex-direction: column;
	min-height: 100vh;
}

.content {
	display: flex;
	flex-direction: column;
	flex: 1;            /* <- Use entire available height between header and footer */
}

.content div {
   margin-top: 12px;
   margin: 5x;
    padding: 12px;
}


.login {
  display: flex;
  flex-direction: column;
	min-height: 50vh;
    align-items: center;

}


/* FOOTER */

.footer {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;

  height: 150px;
}

.footer div {
  padding: 12px;
}

.footer div h5 {
}

.footer div li {
  list-style-type: none;
  font-size: 12px;
  padding-bottom: 4px;
  }


form {
}


.button {

  border: none;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}


submit {
    width: 50px;
}





.error {
  font-size: 12px;
  color: red !important;
}

.uwarning {
  color: rgb(0, 0, 0);
  font-style: normal !important;
  font-style: oblique !important;
}


.devnote {
  color: rgb(204, 204, 204);
  font-style: italic;
  font-size: 12px;
  background-color:rgb(184, 184, 184);
  border: 1px dotted black;
}

.navlink {
  margin-top: 25px;
  color: rgb(105, 105, 105);
  font-weight: 500;
}

.green {
  color: green !important;
  margin-left: 0px;
  padding-left: 0px;
}

.red {
  color: rgb(255, 0, 0) !important;
  margin-left: 0px;
  padding-left: 0px;
}

