/* ================== style.css ================== */

/* GLOBAL RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

/* BODY BACKGROUND IMAGE */
body {
  height: 100vh;
  background-image: url("https://bizindia365.com/Images/background.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* MAIN CONTAINER */
.container {
  width: 100%;
  max-width: 1200px;
  height: 90vh;
  display: flex;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  /*backdrop-filter: blur(8px);
}

/* LEFT PANEL */
.left {
  flex: 1.2;
  padding: 60px;
  background: linear-gradient
(
rgba(7, 18, 77, 0.85)
,rgba(12, 44, 138, 0.85));
  color: #fff;
}

.error-text {
      color:#dc2626;
      font-size:12px;
      margin-top:-10px;
      margin-bottom:12px;
      display:none;
    }


.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 18px;
  font-size: 14px;
  text-align: center;
}

.title {
  margin-top: 80px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
}

/* RIGHT PANEL */
.right {
  flex: 0.8;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* LOGIN BOX */
.login-box {
  width: 85%;
  max-width: 360px;
  text-align: center;
}

.logo {
  margin-bottom: 20px;
}

.logo img {
  width: 150px;       /* change size here */
  height: auto;
}
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 12px;
}

.login-box {
  margin-bottom: 50px;
  color: #000;
}

.google-btn {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  margin-bottom: 16px;
}

.divider {
  display: flex;
  align-items: center;
  margin: 16px 0;
  color: #999;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #ddd;
}

.divider span {
  margin: 0 10px;
  font-size: 12px;
}

input {
  width: 100%;
  padding: 12px;
  margin-bottom: 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.btn-primary {
  width: 100%;
  padding: 12px;
  background: #0c2c8a;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.register {
  margin-top: 16px;
  font-size: 14px;
  color: #555;
}

.register a {
  color: #0c2c8a;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .container {
    flex-direction: column;
    height: auto;
  }

  .left {
    display: none;
  }
}
