* {
  margin: 0;
  padding: 0;
  font-family: "SemiBold";
  color: #737373;
}

body {
  overflow: hidden;

  --background: rgb(240, 240, 240);
  --foreground: rgb(255, 255, 255);
  --input-background: rgb(225, 225, 225);
  --primary_text: #cacaca;
  background: black;
}

.background {
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  align-items: center;
  justify-content: center;
  background-color: #040404;
}

.form {
  width: 500px;
  display: flex;
  z-index: 999;
  flex-direction: column;
  background-color: #000;
  border-radius: 20px;
}

.form-footer-loginoptions {
  width: 100%;
  gap: 10px;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #0f0f0f;
  padding-top: 20px;
}

.form-footer-registeroption {
  display: flex;
  gap: 5px;
}

.form-footer-loginoptions a {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  background-color: #040404;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #202020;
  transition: 0.2s;
  color: white;
}

.form-footer-loginoptions a:hover {
  background-color: #0b0b0b;

}

.form-footer-recoveroption {
  width: 100%;
  text-align: right;
}

.form-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  gap: 20px;
  padding-top: 53px;
}

.form-footer-save p {
  color: #a2a2a2;
}

.form-body-twofactor {
  margin-top: 20px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 20px;
  color: white;
}

.form-body {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  padding-left: 40px;
  padding-right: 40px;
  align-items: center;
  word-wrap: anywhere;
}

.form-body-logout {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-bottom: 20px;
  margin-top: 10px;
  color: #ffc180;
  align-items: center;
  gap: 5px;
  flex-direction: column;
}

.form-header img {
  height: 25px;
}

.form-body-entry {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  padding: 10px;
  margin: 30px;
  margin-bottom: 0px;
  margin-top: 0px;
  width: 100%;
  word-wrap: anywhere;
}

.form-body-entry b {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
  color: var(--primary_text);
}

.form-body-entry-input {
  padding: 8px 16px;
  line-height: 25px;
  font-size: 14px;
  font-weight: 100;
  border-radius: 9px;
  transition: 0.2s;
  background-color: rgb(11, 11, 11);
  border: 1px solid #0d0d0d;
  color: #646464;
}

.form-body-entry-input:focus {
  border: none;
  outline: none;
  border: 1px solid #222;
}

#response {
  color: rgb(223, 0, 0);
  margin-bottom: 5px;
}

.form-footer-save {
  height: 40px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #090909;
  border-radius: 10px;
  color: #8a8a8a;
  cursor: pointer;
  user-select: none;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
  /*! transition: 0.2s; */
}

.backgroundimage {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.02;
  z-index: 101;
  backdrop-filter: blur(20px);
}

.backgroundoverlay {
  background-color: #00222d;
  position: absolute;
  z-index: 100;
  width: 100%;
  height: 100%;
  backdrop-filter: saturate(180%) blur(20px);
}

.form-footer-save:hover {
  background-color: #0f0f0f;
  /*! transform: scale(0.98); */
}

.backgroundblur {
  z-index: 500;
  position: absolute;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(6px);
}

.form-footer-warning {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffd7a4;
  width: 80%;
}

.form-footer {
  margin-bottom: 25px;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--primary_text);
  margin-top: 15px;
  padding-left: 40px;
  padding-right: 40px;
}

.form-footer p a {
  text-decoration: none;
}

.form-header p {
  color: #c2652d;
}

.form-footer-actions {
  display: flex;
  gap: 40px;
  width: 100%;
  justify-content: center;
}

#authentication-graphic img {
  height: 100%;
  width: 100%;
}

.fa-solid.fa-triangle-exclamation {
  color: #c2652d;
}

.form-footer-warning p {
  color: #c2652d;
}

.borderform {
  border: 1px solid #ececec;
  border-radius: 30px;
}

#authentication-graphic {
  width: 35%;
  border-left: 3px solid #000;
}

#authentication-wrapper {
  width: 65%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.form-footer-actions a:hover {
  color: #b2b2b2;
}

.form-footer-actions a {
  color: #fff;
  text-decoration: none;
  transition: 0.2s;
  background-color: black;
  padding: 10px 100px 13px 100px;
  border-radius: 10px;
  line-height: 32px;
}

.form-body-notfound {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #f66;
  padding-bottom: 60px;
}

.form-body-notfound h1 {
  font-size: 6rem;
}

.form-body-notfound>p {
  font-size: 1.5rem;
}

#page-not-found {
  width: 400px;
}

@media screen and (max-width: 767px) {
  .form {
    width: 100%;
    height: 100%;
    border-radius: 0;
    padding-top: 10rem;
  }

  .area {
    display: none;
  }

  #authentication-graphic {
    display: none;
  }

  #authentication-wrapper {
    width: 100%;
  }
}