/* Variables */
:root {
  --Text-Color: rgba(205, 179, 83, 0.933);
  --Text-Font: "OCR-A-Regular";
}
/*  */

/* Fonts */
@font-face {
  font-family: "OCR-A-bt";
  src: url(Fonts/ocr/OCR-A-bt.ttf) format("truetype");
}
@font-face {
  font-family: "OCR-A-Regular";
  src: url(Fonts/ocr/OCR-A-Regular.ttf) format("truetype");
}
@font-face {
  font-family: "OCR-A";
  src: url(Fonts/ocr/OCR-A.ttf) format("truetype");
}
@font-face {
  font-family: "OCR-ABT";
  src: url(Fonts/ocr/OCR-ABT.ttf) format("truetype");
}
@font-face {
  font-family: "OCR-Aregular";
  src: url(Fonts/ocr/OCR-Aregular.ttf) format("truetype");
}
/*  */

/* Elements */
body {
  background-color: black;
  color: var(--Text-Color);
  font-family: var(--Text-Font);
  font-size: 1cm;
  text-align: center;
  margin: 0;
}
div {
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}
p {
  margin: 0;
}
/*  */

/* Classes */
.Main-Container {
  min-height: 100vh;
  justify-content: center;
}
.Login-Container {
  position: relative;
  background-color: rgba(0, 0, 0, 0.885);
  border-style: double;
  border-width: 0.2cm;
  border-color: var(--Text-Color);
  font-size: 0.75cm;
  width: auto;
  top: 1cm;
  padding: 5cm;
  padding-bottom: 0.25cm;
  padding-top: 0.5cm;
}
.Login-Heading {
  text-align: center;
  text-decoration: underline;
  text-decoration-thickness: 0.05cm;
  font-size: 1cm;
  margin-bottom: 0.25cm;
}
.Login-Label {
  font-size: 0.65cm;
  width: 5.5cm;
  align-self: self-start;
  text-align: left;
}
.Login-Text-Box {
  color: white;
  background-color: var(--Text-Color);
  border-style: solid;
  border-radius: 0.1cm;
  border-color: rgb(157, 189, 51);
  border-width: 0.1cm;
  width: 5.5cm;
  height: 0.5cm;
  margin: 0;
  margin-bottom: 0.2cm;
}
.Login-Submit {
  color: rgb(53, 57, 5);
  font-family: var(--Text-Font);
  font-weight: bold;
  background-color: var(--Text-Color);
  border-style: solid;
  border-radius: 0.1cm;
  border-color: rgba(157, 189, 51, 0);
  border-width: 0.1cm;
  font-size: 0.4cm;
  height: 1cm;
  width: 3cm;
  margin: 0;
  transition-duration: 0.3s;
}
.Login-Submit:hover {
  cursor: pointer;
  height: 1.1cm;
  width: 3.3cm;
  font-size: 0.44cm;
  background-color: rgb(132, 134, 1);
}
.Login-Submit-Container {
  margin-top: 0.25cm;
  margin-bottom: 0;
  padding: 0;
  width: auto;
  height: 1.25cm;
}

/* Background and Title */
.Title {
  height: 6cm;
  position: absolute;
}
.Background {
  z-index: -1;
}
.Elden-Ring-Background {
  max-width: 100vw;
  max-height: calc(100vh - 5cm);
  width: auto;
  z-index: -1;
  position: absolute;
  top: 5cm;
}
