/* Login page styles */



body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #fff;
  color: #111;
}

.signin-container {
  display: flex;
  min-height: 100vh;
}

/* .signin-image {
  flex: 1;
  background: #f9f9f9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  position: relative;
}

.signin-image img {
  width: 100%;
  max-width: 480px;
} */

.brand-logo {
  position: absolute;
  top: 40px;
  left: 40px;
  font-weight: 700;
  font-size: 24px;
}

.signin-form {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

form {
  width: 100%;
  max-width: 380px;
}

h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.subtext {
  font-size: 14px;
  margin-bottom: 20px;
  color: #555;
}

.subtext a {
  color: #1abc9c;
  text-decoration: none;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

input[type="text"],
input[type="password"] {
  width: 85%;
  padding: 14px 40px 14px 12px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
}

.password-group i {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  cursor: pointer;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  margin-bottom: 20px;
}

.form-options a {
  font-weight: 600;
  color: #111;
  text-decoration: none;
}

.btn-signin {
  width: 100%;
  padding: 12px;
  background-color: #111;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-signin:hover {
  background-color: #333;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .signin-container {
    flex-direction: column;
  }

  .signin-image {
    display: none;
  }

  .signin-form {
    padding: 60px 30px;
  }
}












/* Fill the left pane with the image */
.signin-image {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: block;          /* no need to center via flex anymore */
  background: #000;        /* fallback while image loads */
}

/* Make the <img> behave like a background cover */
.signin-image img {
  position: absolute;
  inset: 0;
  width: 142%;
  height: 100%;
  object-fit: cover;       /* <-- key: cover the pane */
  object-position: 85% 50%; /* adjust focal point as needed */
}

/* Optional: subtle dark overlay for readability */
.signin-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.35), rgba(0,0,0,.35));
  pointer-events: none;
}

/* Keep the brand logo above the overlay */
.brand-logo {
  position: absolute;
  top: 40px;
  left: 40px;
  font-weight: 700;
  font-size: 24px;
  color: #fff;             /* ensure visible on the image */
  z-index: 2;
}

/* Container and form stay the same, just ensuring full height */
.signin-container { display: flex; min-height: 100vh; }
.signin-form {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  background: #fff;
}

/* Inputs can keep your current style; no change needed */

/* Mobile: still hide the image section */
@media (max-width: 768px) {
  .signin-container { flex-direction: column; }
  .signin-image { display: none; }
  .signin-form { padding: 60px 30px; }
}



/* small brand logo at top-left */
.signin-image .brand-mark{
  position: absolute;
  top: 24px;
  left: 24px;
  height: 36px;                  /* control size here */
  width: auto;
  max-width: none;
  z-index: 3;                    /* above the hero */
  pointer-events: none;          /* no click behavior */
}

/* remove/override any generic rule like this if present:
   .signin-image img { width:100%; max-width:480px; } */





