/* General Styles */
body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background-color: #3A236A;
}

/* Login Page Layout */
.page-body-wrapper {
  display: flex;
  min-height: 100vh;
}

.content-wrapper {
  width: 100%;
}

/* Right Side Image Section */
.bg-login {
  background-image: url('../images/scratchcard.png'); /* Replace with your image path */
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}


/* You can add text/content on the image */
.bg-login-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  width: 80%;
  z-index: 1;
}

/* Login Container Styles */
.login-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Logo Styles */
.py-4 img {
  max-width: 180px;
  height: auto;
}

/* Form Styles */
.form-control {
  border-radius: 8px;
  padding: 12px 15px;
  border: 1px solid #ddd;
}

.form-label {
  font-weight: 600;
  color: #ffffff;
}

.btn-primary {
  background-color: #00A313;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: #008F11;
}
img.white-logo {
  filter: brightness(0) invert(1);
}



/* Responsive Styles */
@media (max-width: 767.98px) {
  .d-none.d-md-block {
    display: none !important;
  }
  
  .col-md-6 {
    width: 100%;
  }
  
  .login-container {
    padding: 2rem 1rem;
  }
}
.footer-copyright {
  color: #ffffff !important; /* Match your button color */
}

.error-message {
  color: red;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.form-control.error {
  border-color: red;
}
/* Add these to your style.css */
#emailSection, #scratchCardSection {
  transition: all 0.5s ease-in-out;
}

.slide-out {
  transform: translateX(-100%);
  opacity: 0;
  position: absolute;
  width: 100%;
}

.slide-in {
  animation: slideIn 0.5s ease-in-out forwards;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.white-link {
  color: #ffffff;
  text-decoration: underline; /* optional */
}

.white-link:hover {
  color: #e0e0e0; /* slightly lighter on hover */
}

