body {
  background: url('../Image/login_background.png') no-repeat center center fixed;
  background-size: cover;
}

.login-container {
  flex: 1; /* takes up all space between header and footer */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.login-box {
  display: flex;
  width: 800px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

label {
  display: block;
  text-align: left;
  font-weight: 500;
  margin-bottom: 4px;
}

.left-panel, .right-panel {
  flex: 1;
  padding: 40px;
  text-align: center;
}

.left-panel {
  border-right: 1px solid #ccc;
}

.logo {
  width: 200px;
  margin-top: 50px;
  margin-bottom: -20px;
}

.tagline {
  font-size: 14px;
  color: #333;
}

.subtext {
  font-size: 12px;
  color: #777;
  margin-top: 30%;
}

.right-panel h2 {
  margin-bottom: 25px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input[type="email"], input[type="password"] {
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  padding: 10px;
  font-size: 16px;
  background-color: black;
  color: white;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  margin-top: 10px;
}

button:hover {
  background-color: #0044ff;
}

.forgot {
  font-size: 12px;
  color: #555;
  margin-top: 8px;
  text-decoration: none;
}