
body {
  display: flex;
  margin: 0;
  height: 100vh; /* Full viewport height */
}
.left-side {
  background-color: white; /* Left side color */
  flex: 1; /* Takes up 50% of the space */
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.right-side {
  background-color: black; /* Right side color */
  flex: 1; /* Takes up 50% of the space */
  padding: 20px;
}
.login-form {
  background-color: white; /* Form background color */
  border-radius: 10px; /* Rounded corners */
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Shadow for depth */
  width: 100%; /* Full width */
  max-width: 700px; /* Max width of the form */
}
.login-form .footer {
  text-align: center;
  margin-top: 10px;
  font-size: 14px; /* Smaller font size */
  color: gray; /* Footer text color */
}
.show-password {
  display: flex;
  align-items: center;
  margin-top: 10px;
}