body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.container {
  display: flex;
  height: 100vh;
}

.left {
  flex: 1.5;
}

.left img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.right {
  flex: 1;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-box {
  width: 80%;
  max-width: 350px;
}

.logo-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.logo-bar img {
  height: 80px;
  max-width: 220px;
  margin-right: 10px;
}

form input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  width: 100%;
  padding: 10px;
  background: #111;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  margin-bottom: 15px;
}

.change-password {
  display: block;
  font-size: 14px;
  margin-bottom: 15px;
  text-decoration: underline;
  color: #333;
}

.disclaimer {
  font-size: 12px;
  color: #444;
  margin-bottom: 10px;
}

.policy-links {
  font-size: 12px;
  margin-bottom: 10px;
  list-style: none;
  padding: 0;
}

.policy-links li a {
  color: #0056b3;
  text-decoration: underline;
}

.help {
  font-size: 12px;
  color: gray;
}
