html {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}
body {
  user-select: none;
  font-family: Arial;
  font-size: 120%;
  color: white;
  margin: 0;
  padding: 0;
  width: 100%;
  background: linear-gradient(
      180deg,
      rgb(0, 32, 24) 10%,
      60%,
      rgb(7, 41, 161) 90%
    )
    no-repeat fixed;
}

li:not(:last-child) {
  margin-bottom: 10px;
}

.logo_container {
  max-width: 100vw;
}

.logo_container img {
  width: 100%; /* Image takes the full width of the container */
  height: auto; /* Height adjusts automatically to maintain aspect ratio */
  display: block; /* Ensures proper rendering as a block element */
}

.background_image {
  background-image: url("../img/logo.png");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: contain;
  position: fixed;
  width: 100vw;
  filter: brightness(0) invert(1);
  opacity: 0.2;
  top: 0;
  bottom: 0;
  z-index: -1;
}

.block_content {
  background-color: transparent;
}

#coverlogo {
  text-align: center;
}

#coverlogo img {
  max-width: 100%;
  max-height: 95px;
  width: auto;
}

#login_header {
  max-width: 600px;
  width: 80%;
  margin: 50px auto 0px;
  color: white;
  background-color: #333;
  /* background: linear-gradient(0deg, #1f07a7 0%, #4346f5 100%); */
  text-align: center;
  border: 1px solid #b0c4de;
  border-bottom: none;
  border-radius: 10px 10px 0px 0px;
  padding: 20px;
}

.mainfeature {
  margin: 50px 0;
  width: 100%;
  font-size: large;
}

.mainfeature content {
  width: 100%;
}

.mainfeature h2 {
  font-weight: bold;
  font-size: larger;
}

.aboutcolumn {
  display: inline-block;
  width: 100%;
  /* min-width: 400px; */
  /* border: 5px solid red; */
  /* box-sizing: border-box; */
  padding: 10px;
}
.logincolumn {
  width: 100%;
  display: inline-block;
  /* padding-left: 10px;
  padding-right: 10px; */
  /* min-width: 400px; */
  /* border: 5px solid blue; */
  /* box-sizing: border-box; */
  height: 100vh;
  padding-top: 20px;
}
.passwordresetcolumn {
  width: 100%;
  display: inline-block;
  padding: 20px;
  /* padding-left: 10px;
  padding-right: 10px; */
  /* min-width: 400px; */
  /* box-sizing: border-box; */
  height: 100vh;
}
.aboutpage {
  margin: 50px 10%;
}

.input-group {
  margin: 10px 0px 10px 0px;
}
.input-group label {
  display: block;
  text-align: left;
  margin: 3px;
}
.input-group input {
  height: 30px;
  width: 100%;
  padding: 5px 10px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid gray;
}

.logincontainer {
  color: black;
  max-width: 600px;
  width: 80%;
  margin: 0px auto;
  padding: 20px;
  border: 1px solid #b0c4de;
  background: white;
  border-radius: 0px 0px 10px 10px;
}

#server_response {
  padding: 10px;
  margin-top: 10px;
}

.hidden {
  display: None;
}

.server_response_hidden {
  display: None;
}

.server_response_green {
  display: block;
  background-color: rgb(204, 231, 164);
}

.server_response_red {
  display: block;
  background-color: rgb(231, 161, 161);
}

.scroll_to_login {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 15px; /* Adds internal space around content */
  background-color: #333; /* Optional: for visibility */
  color: white; /* Optional: for readability */
  /* Other optional styles */
  z-index: 1000; /* Optional: ensures it's above other content */
  background-color: #d1d5db; /* bg-gray-300 */
  color: #000; /* text-black */
  font-weight: 700; /* font-bold */
  padding: 0.5rem 1rem; /* py-2 px-4 (1rem = 16px, 0.5rem = 8px) */
  border-radius: 0.25rem; /* rounded (usually 4px) */
}

textarea {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  font-family: Arial;
  font-size: 100%;
}

button {
  opacity: 1;
  background-color: #333; /* Primary brand color */
  color: white;
  padding: 12px 24px; /* Ample padding for comfort */
  border: none;
  border-radius: 5px; /* Subtle rounded corners */
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
  transition:
    background-color 0.3s ease,
    transform 0.1s ease; /* Smooth transitions */
}

button:focus,
button:hover {
  background-color: #0056b3; /* Darker shade on hover */
}

button:disabled {
  background-color: gray;
  cursor: auto;
}
#signin_nav_button {
  display: block;
}
#button_group button {
  margin-bottom: 10px;
  margin-top: 10px;
}

@media (min-width: 1160px) {
  .aboutcolumn {
    float: left;
    width: 65%;
  }
  .logincolumn {
    width: 35%;
    position: fixed;
    left: 65%;
    padding-left: 10px;
    padding-right: 10px;
    min-width: 400px;
  }
  .scroll_to_login {
    display: none;
  }
  #signin_nav_button {
    display: none;
  }
}

.feature h3 {
  text-decoration: underline;
}

.feature p {
  margin-left: 10px;
  padding-top: 0px;
  padding-bottom: 25px;
}

.copyright {
  position: fixed;
  bottom: 0px;
  padding: 10px;
  width: 100%;
  text-align: center;
  color: white;
}
