
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: #000;
}

.landing-page {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background */
.landing-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.landing-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Container Wrapper */
.container-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  max-width: 900px;
  aspect-ratio: auto;
  scale: 1.6;
}

.container-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

/* Login Box - Content inside container */
.login-box {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 60px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Title SVG */
.login-title-svg {
  max-width: 350px;
  width: 100%;
  height: auto;
  margin-bottom: 40px;
  display: block;
}

/* Login Label Container with lines */
.login-label-container {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.label-line {
  width: 30px;
  height: 1px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

/* Label */
.login-label {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

/* Instruction Container */
.login-instruction-container {
  display: inline-block;
  margin-bottom: 10px;
  padding: 12px 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.03);
}

/* Instruction */
.login-instruction {
  font-size: 0.85rem;
  color: #aaa;
  margin: 0;
  line-height: 1.4;
}

/* Login Button */
.login-button {
  display: inline-block;
  padding: 12px 40px;
  background-color: #00000065;
  color: #ffffff;
  border: 2px solid #fff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.login-button:hover {
  background-color: transparent;
  color: #fff;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
}

.login-button:active {
  opacity: 0.8;
}

/* Tablet View */
@media (max-width: 868px) {
  .container-wrapper {
    scale: 1.4;
  }
  .login-title-svg {
    max-width: 260px;
    margin-bottom: 30px;
  }

  .login-box {
    padding: 20px 20px;
  }

  .login-label {
    font-size: 1rem;
  }

  .label-line {
    width: 20px;
  }

  .login-instruction-container {
    padding: 10px 10px;
  }

  .login-button {
    padding: 10px 30px;
    font-size: 0.85rem;
  }
}

/* Mobile View */
@media (max-width: 480px) {
  .container-wrapper {
    width: 95%;
    scale: 1;
  }

  .login-title-svg {
    max-width: 220px;
    margin-bottom: 25px;
  }
  .login-label-container {
    margin-bottom: 10px ;
  }
  .login-label {
    font-size: 1.2rem;
  }

  .label-line {
    width: 15px;
  }

  .login-instruction {
    font-size: 0.65rem;
  }

  .login-instruction-container {
    padding: 8px 12px;
  }

  .login-box {
    padding: 20px 15px;
  }

  .login-button {
    padding: 8px 20px;
    font-size: 0.8rem;
    letter-spacing: 1px;
  }
}

/* Landscape Mobile */
@media (max-height: 600px) and (orientation: landscape) {
  .login-box {
    padding: 20px 30px;
  }

  .login-title-svg {
    max-width: 200px;
    margin-bottom: 8px;
  }

  .login-label {
    margin-bottom: 12px;
  }

  .login-instruction {
    margin-bottom: 15px;
    font-size: 0.75rem;
  }
}
