:root {
  --fxcolor01: white;
  --fxcolor02: lightgray;
  --fxcolor03: darkgray;
  --fxcolor04: gray;
  --fxcolor05: dimgray;
  --color01: white;
  --color02: darkred;
  --color03: black;
}
html, body {
  height: 100%;
}
body {
  min-width: 600px;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0
}
fieldset {
  border: 1px solid var(--fxcolor05);
  border-radius: 12px 0 12px 0;
  margin: 15px;
}
legend {
  padding: 10px;
  color: var(--color02);
  font-style: italic;
  text-align: right;
}
h1 {
  font-size: 52px;
  color: var(--color01);
}
a {
  cursor: pointer;
}
.boxHeader {
  border: 1px dotted lightgray;
  background: var(--color02);
  --height: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.boxBody {
  border: 1px dotted lightgray;
  background: var(--fxcolor01);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.boxFooter {
  border: 1px dotted lightgray;
  background: var(--fxcolor02);
  height: 15%;
}
.boxLoginForm {
  display: flex;
  width: 500px;
  height: 400px;
  background: var(--fxcolor01);
  margin: auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.myInput {
  position: relative;
  margin-bottom: 25px;
  width: 100%;
}
.tabs {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}
.mytab {
  width: 50%;
  background: var(--fxcolor03);
  border-top: 2px solid var(--color01);
  cursor: pointer;
  --margin: 10px;
  padding: 10px;
  font-family: Arial;
  font-size: 18px;
  font-weight: bold;
  color: var(--color01);
  word-wrap: break-word;
}
.tabcontent {
  display: none;
  border: 2px dotted var(--fxcolor03);
  border-top: none;
}
.myInput label {
  position: absolute;
  top: -15px;
  left: 0;
  font-family: Arial;
  font-size: 12px;
  color: var(--color02);
}
.myInput input {
  border: 1px dotted var(--fxcolor02);
  font-family: Arial;
  font-size: 18px;
  font-weight: bold;
  color: var(--fxcolor04);
  width: 350px;
  padding: 8px 0 5px 5px;
}
.myInput input:hover {
  border-bottom: 1px solid var(--color02);
}
.myInput input:focus {
  outline: none;
  border-bottom: 3px solid var(--color02);
}
.myButton {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
.myButton button {
  border: 1px solid var(--fxcolor02);
  background: var(--color02);
  color: var(--color01);
  font-family: Arial;
  font-size: 18px;
  border-radius: 0 12px 0 12px;
  width: 35%;
  height: 40px;
}
.myButton button:hover {
  border: 2px solid var(--color02);
  color: var(--color02);
  background: var(--color01);
}
.myButton button:focus {
  background: var(--color01);
  outline: none;
  color: var(--color02);
  font-weight: bold;
}
.myButton button[disabled] {
  background: var(--fxcolor02);
}
.myButton button[disabled]:hover {
  border: 2px solid var(--fxcolor03);
  color: var(--fxcolor03);
  background: var(--fxcolor01);
}
.myActionButton {
  display: flex;
  flex-direction: row;
  width: 100%;
}
.myActionButton button {
  flex-grow: 1;
  color: var(--color02);
  background: var(--fxcolor01);
  border: 0;
  font-family: Arial;
  font-size: 16px;
  font-weight: bold;
  height: 100%;
  word-wrap: break-word;
}
.myActionButton button:hover {
  --width: 50%;
  border: 1px dotted var(--fxcolor02);
  background: var(--fxcolor03);
  color: var(--fxcolor01);
  font-weight: bold;
  text-decoration: underline;
  --font-size: 18px;
}
.myActionButton button[disabled] {
  color: var(--fxcolor02);
  font-weight: normal;
  background-color: var(--fxcolor01);
}
.myActionButton button[disabled]:hover {
  color: var(--fxcolor01);
  background: var(--fxcolor02);
  text-decoration: none;
}
.boxAction {
  display: flex;
  width: 70%;
  --height: 80%;
  background: white;
  --border: 1px dotted;
  margin: auto;
  align-items: center;
  justify-content: center;
}
.myDocList label {
  font-family: Arial;
  font-size: 16px;
}
.myDocList a {
  font-family: Arial;
  font-size: 16px;
  font-style: italic;
  color: blue;
}
.para0 {
  margin: 0 10px 0 10px;
  font-family: Arial;
  font-size: 24px;
  font-weight: bolder;
  color: var(--color01);
  word-wrap: break-word;

}
.para1 {
  margin: 0;
  font-family: Arial;
  font-size: 18px;
  font-weight: bold;
  color: var(--color01);
  word-wrap: break-word;
}
.para2 {
  margin: 0;
  font-family: Arial;
  font-size: 12px;
  color: var(--color02);
  word-wrap: break-word;
}
.paraT {
  margin: 10px;
  font-family: Arial;
  font-size: 18px;
  font-weight: bold;
  color: var(--color01);
  word-wrap: break-word;
}

.boxSpecial {
  background: var(--color02)
}
.boxSpecial fieldset {
  border: 3px solid var(--color01);
  border-radius: 12px 0 12px 0;
  margin: 15px;
}
.boxSpecial legend {
  padding: 10px;
  color: var(--color01);
  font-style: italic;
  text-align: right;
  font-weight: bold;
}
