jfbats$20
/*
 * Marketing landing styles for batsecho.io
 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #000;
  color: #fff;
  min-height: 100vh;
  display: flex;
}

a {
  color: inherit;
}

.split-container {
  display: flex;
  width: 100%;
  min-height: 100vh;
}

.split-container > .left-panel,
.split-container > .right-panel {
  flex: 1 1 50%;
  max-width: 50%;
}

.left-panel {
  background-image: url('../img/haul-bg2.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px;
  position: relative;
  overflow: hidden;
}

.left-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.45) 100%);
  pointer-events: none;
}

.logo-container {
  position: absolute;
  top: 40px;
  left: 40px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-container img {
  max-width: 105px;
  height: auto;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
}

.logo-divider {
  color: rgba(255, 255, 255, 0.3);
  font-size: 24px;
  font-weight: 300;
}

.logo-text {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}

.tagline {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  letter-spacing: 1px;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.right-panel {
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}

.login-content {
  max-width: 440px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 48px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.header-label {
  font-size: 13px;
  font-weight: 500;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.main-title {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.2;
  color: #fff;
}

.description {
  font-size: 15px;
  font-weight: 400;
  color: #999;
  line-height: 1.6;
  margin-bottom: 24px;
}

.security-notice {
  font-size: 13px;
  font-weight: 400;
  color: #888;
  line-height: 1.6;
  margin-bottom: 32px;
  padding: 14px 16px;
  background-color: rgba(255, 255, 255, 0.02);
  border-left: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}

.deploy-button {
  background-color: #0d6efd;
  color: #fff;
  border: none;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: block;
  width: fit-content;
  line-height: 1.5;
  text-align: center;
  margin: 0 auto;
  min-width: 160px;
}

.deploy-button:hover {
  background-color: #0b5ed7;
  transform: translateY(-1px);
}

.deploy-button:active {
  transform: translateY(0);
}

.support-text {
  margin-top: 24px;
  font-size: 13px;
  color: #666;
  text-align: center;
}

.support-text a {
  color: #0d6efd;
  text-decoration: none;
  font-weight: 500;
}

.support-text a:hover {
  color: #0b5ed7;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .split-container {
    flex-direction: column;
  }

  .split-container > .left-panel,
  .split-container > .right-panel {
    max-width: 100%;
  }

  .left-panel {
    min-height: 40vh;
    padding: 40px 20px;
  }

  .logo-container {
    top: 30px;
    left: 30px;
  }

  .logo-container img {
    max-width: 100px;
  }

  .logo-text {
    font-size: 14px;
  }

  .right-panel {
    padding: 40px 24px;
  }

  .login-content {
    padding: 32px 24px;
  }

  .main-title {
    font-size: 26px;
  }

  .tagline {
    bottom: 30px;
    font-size: 11px;
  }
}
