* {
  box-sizing: border-box;
  font-family: Arial, -apple-system, BlinkMacSystemFont, "segoe ui", roboto, oxygen, ubuntu, cantarell, "fira sans", "droid sans", "helvetica neue", sans-serif;
  padding: 0;
  margin: 0;
  border: 0;
}

html,
body {
  /* background-color: #435165; */
  background-color: #4D5C71;
  font-size: 10px;
}
a {
  text-decoration: none;
  font-weight: bold;
  color: #E37208;
  font-size: 1rem;
}

a:hover {
  color: #C35204;
}

h1 {
  visibility: hidden;
  display: none;
}

div {
  overflow: hidden;
  background-color: transparent;
  font-size: 1rem;
}

#divHeader {
  background-color: #FFFFFF;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#divBody {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 50px;
  display: table;
}

#divLogo {
  padding: 2px 2px 2px 5px;
  height: 46px;
}

#imgLogo {
  height: 46px;
}

#divFooter {
  background-color: #FFFFFF;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  padding: 5px;
}

.divForm {
  background-color: #FFFFFF;
  width: 360px;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 5px;
  /* border: 3px solid #000000; */
}

.divForm h2 {
  text-align: center;
  color: #FFFFFF;
  font-size: 1.4rem;
  padding: 14px 0 14px 0;
  margin-bottom: 7px;
  background-color: #1A3369;
}

.divForm div {
  width: 100%;
  padding: 5px;
  margin-bottom: 3px;
}
/*
.login form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 20px;
} */
/*
.divForm form label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  background-color: #1A3369;
  color: #FFFFFF;
} */

.divForm form label {
  padding: 8px 3px 4px 6px;
  background-color: #1A3369;
  color: #FFFFFF;
}

.divForm form input[type="password"],
.divForm form input[type="text"] {
  float: right;
  border: 1px solid #1A3369;
  border-radius: 3px;
  background-color: beige;
  padding: 3px;
  font-size: 1rem;
  width: 250px;
  height: 20px;
  margin-top: -4px;
}

.divForm form input[type="submit"] {
  width: 100%;
  padding: 14px;
  background-color: #1A3369;
  border: 0;
  cursor: pointer;
  font-weight: bold;
  color: #FFFFFF;
  transition: background-color 0.2s;
}
.divFormText {
  margin-top: -3px;
  text-align: center;
  padding-bottom: 3px;
}

.divForm form input[type="submit"]:hover,
.divForm form input[type="submit"]:focus {
  background-color: #2868C7;
  transition: background-color 0.2s;
}
