
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

.footer {
    display: none !important;
}

/* body {
  background-color: #1a1a1a;
  color: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
} */

.mainDiv {
    display: flex;
    height: 100vh;
}

.login-container {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  border-radius: 12px;
  overflow: hidden;
  /* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15); */
}

.login-box {
  flex: 1;
  background: #f6f6f6;
  padding: 40px;
  border-radius: 10px;
  border: 1px solid rgba(170, 170, 170, 0.3);
}

.logo img {
  width: 130px;
  margin-bottom: 20px;
}

.login-container h2 {
  font-size: 20px;
  line-height: 1.5;
  color: #111;
}

.login-container h2 span {
  font-weight: 600;
  font-size: 22px;
}

.subtitle {
  margin-top: 20px;
  color: #555;
  font-size: 14px;
}

.login-container .btn {
  display: block;
  width: 100%;
  margin: 15px 0;
  padding: 12px;
  border-radius: 20px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.login-container .btn.primary {
  background: #0a1a2f;
  color: #fff;
}

.login-container .btn.secondary {
  background: #fff;
  color: #0a1a2f;
  border: 1px solid #0a1a2f;
}

.login-container .small {
  font-size: 12px;
  color: #777;
  text-align: center;
}

.illustration {
  flex: 1.2;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}

.illustration img {
  width: 100%;
  max-width: 650px;
}
