:root {
  --themeprimaryclr: #ff671f;
  --dark-primaryclr: #e55a17;
  --light-primaryclr: #ff8a4c;
  --themesecondaryclr: #06038d;
  --light-secondaryclr: #3a36db;
  --gray-200: #1a1a1a;
  --gray-100: #333333;
  --lightbg: #f5f5f5;
  --plainclr: #ffffff;
  --off-white: #fafafa;
}

body,
html {
  height: 100%;
  font-family: "Inter", sans-serif;
  background-color: var(--plainclr);
  overflow-x: hidden;
}

/* Main Wrapper */
.login-page {
  display: flex;
  min-height: 100vh;
  width: 100%;
}

/* Left Side: Image Section (50%) */
.image-side {
  flex: 1;
  background-image: url("https://staticdev.locowiz.com/locomedia/website-builder/image/banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* Right Side: Form Section (50%) */
.form-side {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  background-color: var(--plainclr);
}

.form-container {
  width: 100%;
  max-width: 420px;
}

.form-container h1 {
  font-family: "Merriweather", serif;
  font-size: 2.2rem;
  color: var(--gray-200);
  margin-bottom: 8px;
}

.form-container p.subtitle {
  color: #666;
  margin-bottom: 35px;
  font-size: 1rem;
}

/* Form Controls */
.input-group {
  margin-bottom: 20px;
  flex-direction: column;
}

.input-group input {
  width: 100% !important;
}

.input-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--gray-100);
  font-size: 0.9rem;
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--themeprimaryclr);
  box-shadow: 0 0 0 4px rgba(255, 103, 31, 0.1);
}

/* Buttons from your code */
.btn-theme-one {
  background-color: var(--themeprimaryclr) !important;
  color: var(--plainclr) !important;
  border: none !important;
  padding: 1rem 1.3rem;
  font-size: 1rem;
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
  margin-top: 10px;
  display: block;
  text-align: center;
  text-decoration: none;
}

.btn-theme-one:hover {
  background-color: var(--dark-primaryclr) !important;
}

.btn-outline-theme {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-100);
  background: transparent;
  border: 1px solid #ddd;
  padding: 0.9rem 1.3rem;
  font-size: 1rem;
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 15px;
  transition: 0.3s;
}

.btn-outline-theme:hover {
  background: var(--lightbg);
  border-color: var(--gray-100);
}

.forgot-link {
  text-align: right;
  margin-bottom: 25px;
}

.forgot-link a {
  color: var(--themesecondaryclr);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
}

.footer-text {
  text-align: center;
  margin-top: 30px;
  font-size: 0.95rem;
  color: #666;
}

.footer-text a {
  color: var(--themeprimaryclr);
  text-decoration: none;
  font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .image-side {
    display: none; /* Mobile par image chhupa di taki form pura dikhe */
  }
  .form-side {
    padding: 30px;
  }
}
.btn-theme-one {
  background-color: var(--themeprimaryclr) !important;
  color: var(--plainclr) !important;
  border: 0px solid var(--plainclr) !important;
  padding: 1rem 1.3rem;
  font-size: 1rem;
}

.btn-theme-one:hover {
  background-color: var(--dark-primaryclr) !important;
  color: var(--plainclr) !important;
  border: 0px solid var(--plainclr) !important;
}/*# sourceMappingURL=loginpage.css.map */