:root {
  --accent-1: #5a4de8;
  --accent-2: #6f3cf0;
  --text-dark: #111827;
  --muted: #6b7280;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
}

.login-container {
  min-height: 100vh;
  display: flex;
  overflow: hidden;
}

/* LEFT SIDE - Hero Section */
.hero-section {
  flex: 1;
  background-image: url('https://libertynetsocial.com/assets/images/auth-background.png');
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}

/* Overlay gradient */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 12, 26, 0.4), rgba(5, 12, 26, 0.6));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.logo {
  width: 100px;
  height: 100px;
  margin-bottom: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 32px;
}

.logo img{
    width: 124px;
    margin-top: -5px;
    margin-left: -3px;
}
.hero-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  /* font-family: 'Orbitron', monospace; */
}

.hero-text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* RIGHT SIDE - Form Section */
.form-section {
  flex: 1;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.form-wrapper {
  width: 100%;
  max-width: 83%;
}

.form-heading {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: 'Orbitron', monospace;
}

.form-subtext {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  font-size: 13px;
  color: #374151;
  margin-bottom: 8px;
  font-weight: 500;
}

.input-group-custom {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f5f5f7;
  border-radius: 28px;
  padding: 12px 18px;
  border: 1px solid #e5e5e7;
}

.input-group-custom svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #9ca3af;
  opacity: 0.8;
}
.input-group-custom span i {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #9ca3af;
  opacity: 0.8;
}

.input-group-custom input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
  font-family: inherit;
}

.input-group-custom input::placeholder {
  color: #9ca3af;
}

.form-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  font-size: 13px;
}

.checkbox-custom {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-dark);
}

.checkbox-custom input {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.forgot-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
}

.forgot-link:hover {
  color: var(--text-dark);
}

.btn-login {
  width: 100%;
  padding: 14px 24px;
  border-radius: 32px;
  border: none;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  font-size: 15px;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  color: #fff;
  box-shadow: 0 8px 20px rgba(95, 58, 255, 0.2);
  transition: transform 0.2s ease;
}

.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(95, 58, 255, 0.3);
}

.btn-login:active {
  transform: translateY(1px);
}

.footer-links {
    gap: 16px;
    justify-content: center;
    margin-top: 24px;
    display: flex;
    position: absolute;
    bottom: 10px;
    width: 36%;
}

.footer-links a {
  color: #9ca3af;
  font-size: 12px;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text-dark);
}

/* Responsive */
@media (max-width: 992px) {
  .login-container {
    flex-direction: column;
  }

  .hero-section {
    min-height: 350px;
    padding: 40px 30px;
  }

  .form-section {
    min-height: 500px;
    padding: 30px 20px;
  }

  .hero-title {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    min-height: 300px;
    padding: 30px 20px;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-text {
    font-size: 13px;
  }

  .form-section {
    padding: 20px 16px;
  }

  .form-wrapper {
    max-width: 100%;
  }
}