/* Auth.css */
body {
  position: relative;
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

/* Layer for background image */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/static/images/vc_image_01.jpeg") no-repeat center center fixed;
  background-size: cover;
  filter: blur(8px);
  z-index: -2;
}

/* Layer for the blue-tinted overlay */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(70, 124, 158, 0.4); /* 0.4 = adjust opacity */
  z-index: -1;
}

.vendor-logo {
  text-align: left;
  margin-bottom: 1rem;
}

.vendor-logo img {
  max-width: 400px;
  /* height: auto; */
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

.auth-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100vh;
  background: linear-gradient(to right, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.7));
  padding: 2rem;
}

.auth-feature-box {
  /* max-width: 700px; */
  width: 40%;
  color: #fff;
}

.feature-card {
  background: rgba(0,0,0,0.75);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}



.icon-box {
  font-size: 2rem;
  color: #50FFB1;
  display: flex;
  align-items: center;
}

.text-box h4 {
  color: #50FFB1;
  margin-bottom: 0.3rem;
  font-size: 1.15rem;
}

.auth-scroll-container {
  width: 100% !important;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem 2rem;
  align-items: center;
  justify-content: center;
}

.auth-card {
  /* display: flex; */
  background: rgba(0, 0, 0, 0.75);
  border-radius: 12px;
  padding: 2rem;
  width: 50%;
  margin: 3rem;
  /* max-width: 600px; */
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  color: #fff;
}

.auth-card img {
  display: block;
  margin: 0 auto 1rem auto;
  max-height: 80px;
}

.auth-card h6 {
  text-align: center;
  color: #ccc;
  margin-bottom: 1rem;
}

.auth-card form .btn-info {
  background-color: #E73846;
  border-color: #E73846;
  color: white;
  transition: background-color 0.3s ease;
}

.auth-card form .btn-info:hover {
  background-color: #467C9E;
  border-color: #467C9E;
}

.card-footer {
  background-color: transparent;
  border-top: none;
  padding: 0.5rem 1rem;
  text-align: center;
}
.card-footer a,
.auth-card a {
  color: #50FFB1;
  text-decoration: none;
}

.card-footer a:hover,
.auth-card a:hover {
  text-decoration: underline;
}

/* Adjusts inner form layout for scrollability */
.card-content {
  max-height: 55vh;
  overflow-y: auto;
}

form label {
  color: #fff !important;
}



.text-muted {
  color: #39b0fb !important;
  opacity: 0.9;
}

input {
  margin-right: 2rem;
}

.register-card { 
  padding-right: 0.1rem !important;
  display: flex;
}

@media (max-width: 768px) {
  .auth-wrapper {
    justify-content: center;
    padding: 1rem;
    flex-direction: column;
    /* align-items: center; */
    justify-content: flex-start;
  }

  .auth-feature-box {
    display: none;
  }

  .auth-card {
    width: 100%;
    /* margin: 1rem; */
  }
}