@font-face {
  font-family: "Denim INK TRIAL";
  src: url("/fonts/DenimINK-Regular.woff2") format("woff2"),
    url("/fonts/DenimINK-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: "Denim INK TRIAL", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #0000ff;
  scroll-behavior: smooth;
  position: relative;
}

a:visited {
  color: #0000ff;
}

.header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  margin: 0;
  width: 100%;
}

.logo {
  margin-inline: 5px;
  margin-top: 5px;
  width: calc(100% - 10px);
}

.logo-small {
  margin-inline: 5px;
  margin-top: 5px;
  width: 300px;
}

.subtitle {
  font-size: 15px;
  font-weight: 400;
  margin: 0;
  display: flex;
  justify-content: space-between;
  width: calc(100% - 10px);
  padding-inline: 5px;
}

main {
  padding: 5px;
}

.main-content {
  padding: 0;
  padding-bottom: 25px;
  max-width: 100vw;
  margin: 0;
  line-height: 73.14px;
  text-align: justify;
}

.body-text {
  font-size: 63px;
  font-weight: 400;
  line-height: 73.14px;
  letter-spacing: -0.03em;
  text-align: left;
  margin: 0;
  padding: 0;
}

.session-content p {
  margin-bottom: 30px;
}

.footer {
  display: flex;
  justify-content: space-between;
  background-color: #ffffff;
  position: fixed;
  bottom: 0;
  padding: 5px;
  width: 100%;
  margin: 0;
}

.footer-left,
.footer-right {
  font-size: 15px;
  text-decoration: none;
}

.login-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  color: #0000ff;
  background: transparent;
  font-family: "Denim INK TRIAL", sans-serif;
  font-size: 15px;
  font-weight: 400;
  padding: 0;
  border: none;
  cursor: pointer;
  margin: 0;
}

.modal {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  background-color: rgba(0, 0, 255, 0.9);
  z-index: 1000;
}

.user-form {
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.user-form-fields {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-around;
}

.modal label {
  color: #d9d9d9;
  font-size: 15px;
  font-weight: 400;
  line-height: 17.42px;
  letter-spacing: -0.03em;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.modal input {
  width: 277px;
  height: 22px;
  gap: 0px;
  background-color: #d9d9d9;
  border: none;
  font-size: 14px;
  margin-top: 10px;
  color: #0000ff;
}

.modal button {
  background-color: #d9d9d9;
  color: #0000ff;
  width: 44px;
  height: 22px;
  padding: 0 4px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 400;
  position: absolute;
  bottom: 68px;
}

@media screen and (max-width: 768px) {
  .body-text {
    font-size: 40px;
    line-height: 40px;
  }

  .main-content {
    line-height: auto;
  }
}
