/* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Set the font */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f8f9fa; /* Light grey background */
  overflow: hidden; /* Disable scrollbars */
}

/* Main container: Centering the card on the page */
.container-fluid {
  height: 100vh; /* Full page height */
  position: relative;
  padding: 0; /* No padding */
  background-image: url('https://zeoxonagro.com/wp-content/uploads/2025/03/photorealistic-scene-poultry-farm-with-chickens-scaled.jpg'); /* Background image */
  background-size: cover; /* Stretch background to full screen */
  background-position: center; /* Center the background */
  background-attachment: fixed; /* Keep the background fixed during scrolling */
}

/* Main Card */
.card {
  background-color: rgba(255, 255, 255, 0.9); /* Slightly transparent white */
  border-radius: 30px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1); /* Large shadow for depth */
  padding: 50px; /* Same padding for all sides */
  width: 100%;
  height: 100%;
  max-width: 1600px; /* Increase card width */
  margin: auto; /* Center the card */
}

/* Left Column: Image */
.col-md-6 img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

/* Right Column Content */
.text-center {
  color: #333;
}

/* Logo */
.logo-container .logo {
  max-width: 500px;
  margin-bottom: 30px;
}

/* Login Button */
.login-btn-container .btn {
  font-weight: 600;
  font-size: 18px;
  background-color: #A0346B; /* Elegant blue */
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.login-btn-container .btn:hover {
  background-color: #076933;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}

/* Divider (Horizontal line) */
.divider {
  height: 3px;
  width: 60%;
  background-color: #F39C12; /* Elegant gold accent */
  margin: 30px auto;
  border-radius: 2px;
}

/* Social Icons */
.social-icons .social-icon {
  display: inline-block;
  width: 50px; /* Increased size of the icon */
  height: 50px;
  font-size: 26px; /* Larger font size for the icons */
  text-align: center;
  color: #fff; /* Icon color */
  background-color: transparent; /* Transparent background */
  line-height: 50px;
  transition: all 0.3s ease; /* Smooth transition for hover effect */
  margin: 0 12px; /* Slightly more space between icons */
}

.social-icons .social-icon:hover {
  transform: scale(1.1); /* Slight scale effect on hover */
  color: #F39C12; /* Change icon color to gold on hover */
}

/* Individual Icon Colors */
.social-icons .social-icon.fb {
  color: #3b5998; /* Facebook color */
}

.social-icons .social-icon.tw {
  color: #1da1f2; /* Twitter color */
}

.social-icons .social-icon.yt {
  color: #FF0000; /* YouTube color */
}

.social-icons .social-icon.ln {
  color: #0077b5; /* LinkedIn color */
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .social-icons .social-icon {
    width: 45px; /* Adjusted size for mobile */
    height: 45px;
    font-size: 22px; /* Slightly smaller font size on mobile */
  }

  .social-icons .social-icon:hover {
    transform: scale(1.05); /* Less scaling on hover for mobile */
  }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .card {
    padding: 30px;
  }

  .col-md-6 {
    margin-bottom: 20px;
  }

  .logo-container .logo {
    max-width: 250px;
  }

  .login-btn-container .btn {
    padding: 12px 24px;
    font-size: 16px;
  }
}
