@font-face {
  font-family: "Ubuntu";
  src: url("/rsc/fonts/Ubuntu-R.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Ubuntu", sans-serif;
}

.landing-container {
  display: flex;
  width: 100vw;
  height: 100vh;
}

.left-section {
  position: relative;
  width: 50vw;
  height: 100vh;
  background-color: #90b6b6; /* Warm-mint green */
  overflow: hidden;
}
.left-section .background-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.2;
  position: absolute;
  top: 0;
  left: 0;
}
.left-section .dot-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30px, 1fr));
  justify-content: center;
  align-content: center;
  gap: 5px;
}
.left-section .dot-pattern div {
  width: 20px;
  height: 20px;
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
          clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.left-section .dot-pattern div:hover {
  transform: scale(1.5);
  opacity: 0.9;
}
.left-section .triangle-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.left-section .triangle-overlay line {
  stroke: rgba(255, 255, 255, 0.3);
  stroke-width: 2px;
  transition: stroke-opacity 1.5s ease-in-out;
}

.right-section {
  position: relative;
  width: 50vw;
  height: 100vh;
  background: #222;
  color: white;
  padding: 2rem;
  padding-top: 8%;
  text-align: center;
  box-sizing: border-box;
}
.right-section .logo-container .logo {
  width: 30%;
  height: auto;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.right-section .logo-container h1 {
  margin: 10px 0;
  font-size: 78px;
  text-transform: uppercase;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.right-section form {
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.right-section form .input-group {
  width: 50%;
  display: flex;
  background: #f0f0f0;
  margin: 10px 0;
  border-radius: 5px;
}
.right-section form .input-group input {
  border: none;
  outline: none;
  flex-grow: 1;
  background: transparent;
  padding: 16px;
  font-size: 24px;
}
.right-section form .password-group {
  border: 2px solid transparent;
  width: 50%;
  display: flex;
  position: relative;
}
.right-section form .password-group button {
  position: absolute;
  top: 50%;
  right: 0px;
  height: 100%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #555;
  cursor: pointer;
  font-size: 24px;
  border-radius: 0px 5px 5px 0px;
  padding: 8px 16px;
}
.right-section form .password-group button:hover, .right-section form .password-group button.active {
  background-color: #355252;
  color: white;
  border-color: white;
}
.right-section form #errorMessage {
  width: 50%;
  color: #ff4d4d;
  font-size: 14px;
  margin-top: 10px;
}
.right-section form #errorMessage.hidden {
  display: none;
}
.right-section form button[type=submit] {
  width: 50%;
  background: #90b6b6;
  color: #000;
  border: none;
  padding: 8px;
  cursor: pointer;
  margin: 10px;
  border-radius: 5px;
  font-size: 24px;
}
.right-section .footer {
  margin-top: 20px;
}
.right-section .footer a {
  color: white;
  text-decoration: none;
  display: block;
  margin-top: 10px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.right-section .footer a:hover {
  color: #90b6b6;
}
.right-section .separator {
  margin: 50px 0px;
  border: none;
  height: 2px;
  background: #90b6b6;
  width: 100%;
}/*# sourceMappingURL=landingpage.css.map */