/* Reset & Base */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f3f4f6;
  color: #333;
  display: flex;
  height: 100vh;
}

.container {
  display: flex;
  width: 100%;
}

/* Left Panel */
.left-pane {
  width: 50%;
  background: url('images/partnerlogin1.jpg') no-repeat center center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.overlay h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.overlay p {
  font-size: 18px;
}

/* Right Panel */
.right-pane {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background-color: #ffffff;
}

.login-box {
  width: 100%;
  max-width: 400px;
  padding: 40px;
  background: #f9fafb;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  text-align: center;
}

/* Logo */
.logo img {
  height: 100px;
  margin-bottom: 20px;
  border-radius: 10px;
}

/* Form */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

label {
  font-weight: 600;
  text-align: left;
}

input {
  padding: 12px;
  font-size: 16px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  outline: none;
  transition: 0.3s;
}

input:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

/* Button */
button {
  background-color: #3b82f6;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;

  transition: background 0.3s;
}

button:hover {
  background-color: #2563eb;
}

/* WhatsApp Link */
.whatsapp {
  margin-top: 20px;
  font-size: 14px;
}

.whatsapp a {
  color: #16a34a;
  text-decoration: none;
  font-weight: bold;
}

.whatsapp a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .left-pane, .right-pane {
    width: 100%;
    height: 50vh;
  }

  .login-box {
    width: 90%;
    margin: 0 auto;
  }

  .overlay h1 {
    font-size: 28px;
  }
}
