:root {
  --primary-bg: #fff;
  --card-bg: #0c004d;
  /* Deep navy blue from the image */
  --accent-btn: #c1bfff;
  /* Light lavender color */
  --text-dark: #333;
}

body,
html {
  height: 100%;
  font-family: "Outfit", sans-serif;
  background-color: var(--primary-bg);
}

/* Left side image styling */
.left-side-image {
  position: relative;
  padding: 0;
}

.left-side-image img {
  width: 100%;
  object-fit: cover;
}

/* Overlay to match the subtle purple/blue tint in the original image if needed,
   though a clean image is often better. Let's add a very light tint. */
.left-side-image .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 1, 49, 0.45);
  pointer-events: none;
}

/* Right side specific layout */
.right-side-content {
  background: #fff;
  display: flex;
  flex-direction: column;
}

/* Logo Section */
.logo-section i {
  color: #008080;
  /* Teal-ish color for ASB logo triangle */
}

/* Form Card Styling */
.form-card {
  background-color: var(--card-bg);
  border-radius: 20px;
  width: 100%;
  max-width: 650px;
  padding: 20px 50px !important;
  position: relative;
  z-index: 5;
}

.form-control {
  border-radius: 10px;
  /* Slightly rounded corners for inputs */
  border: none;
  padding: 10px 15px;
  font-size: 0.9rem;
  height: 41px;
}

.form-control:focus {
  box-shadow: none;
  outline: 2px solid var(--accent-btn);
}

.btn-send {
  background-color: var(--accent-btn);
  color: #000;
  border-radius: 10px;
  padding: 10px 0;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  font-size: 20px;
  font-weight: 700;
  max-width: 373px;
}

.btn-send:hover {
  background-color: #b0a8e6;
  transform: translateY(-2px);
}

/* Connector Lines */
.connector-lines {
  margin-top: -5px;
  /* Pull it up a bit to connect */
  margin-bottom: -5px;
  z-index: 4;
}

.connector-lines .line {
  width: 1px;
  height: 30px;
  background-color: #aaa;
  position: relative;
  z-index: 666;
  /* Gray lines as seen in image */
}
.qr-card {
  position: relative;
  z-index: 0;
}
.connector-lines .line::before {
  position: absolute;
  width: 10px;
  height: 10px;
  content: "";
  bottom: -10px;
  left: -5px;
  background: #fff;
  border-radius: 10px;
}

/* QR Card Styling */
.qr-card {
  background-color: var(--card-bg);
  border-radius: 15px;
  width: 100%;
  max-width: 350px;
  position: relative;
  z-index: 2;
}

.qr-code-box {
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Footer */
.footer {
  background-color: var(--card-bg);
  color: white;
  width: 100%;
  left: 0;
  bottom: 0;
  /* Push to bottom */
}

.social-icons a {
  text-decoration: none;
  transition: opacity 0.3s;
  background: white;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--card-bg) !important;
  /* Icon color matches bg */
}

.social-icons a:hover {
  opacity: 0.8;
}

.main_container {
  overflow-x: hidden;
}

.connector-lines .line {
  z-index: 0;
  position: relative;
}

/* .logo-section {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: auto;
  z-index: 55;
  transform: translateX(-50%) translateY(-50%);
  max-width: 560px;
  width: 100%;
} */

.logo-section .vr {
  background: #000 !important;
}

/* Responsive Tweaks */
@media (max-width: 991px) {
  .left-side-image .overlay {
    background: rgba(8, 1, 49, 0.7);
  }

  .left-side-image {
    height: 300px !important;
    /* Show image on top for mobile */
    display: block !important;
  }

  .right-side-content {
    height: auto;
    min-height: calc(100vh - 300px);
  }

  .form-card {
    padding: 20px !important;
    margin-top: 70px;
  }

  .footer {
    order: 1;
    padding: 20px 0 !important;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    position: relative;
  }

  .content-area {
    order: 2;
    margin-top: 30px;
  }

  .main_container {
    overflow: auto;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.logo1 {
  margin-top: -15px;
}
@media (max-width: 575px) {
  .logo1 {
    width: 120px !important;
  }

  .loog2 {
    width: 150px !important;
  }

  .left-side-image {
    height: 200px !important;
  }
}

@media (max-width: 400px) {
  .logo1 {
    width: 100px !important;
  }

  .loog2 {
    width: 120px !important;
  }
  .logo-section img {
    filter: brightness(0) invert(1);
  }
}

.form-card,
.qr-card,
.connector-lines {
  animation: fadeInUp 0.8s ease-out forwards;
}

.qr-card {
  animation-delay: 0.2s;
  /* Stagger the QR card */
}
