* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
}
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/*Navigation Bar Style Starts Here*/
nav {
  height: 80px;
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0rem calc((100vw - 1300px) / 2);
}

nav .logo {
  font-size: 1.5rem;
}

.nav-items a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  margin-left: 20px;
}

/*Navigation Bar Style Ends Here*/

.login-us {
  text-align: center;
  font-size: 25px;
  padding: 20px;
  background-color: #ffffff;
  margin-bottom: 50px;
}

.login-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  background-color: #ffffff;
  margin-top: 700px;
}

.image-container {
  position: absolute;
  top: 20%;
  left: 30%; /* Adjust as needed */
  bottom: 0;
  width: 20%; /* Adjust as needed */
  overflow: hidden; /* Hide image overflow */
}

.image-container img {
  width: 100%;
  max-width: 100%;
}

.login-container {
  flex: 1;
  position: absolute;
  top: 200px; /* Adjust top position */
  right: 20%; /* Adjust right position */
  width: 500px;
  height: 400px;
  padding: 20px;
  background-color: #f3efef;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin: 150px;
}

.login-container h2 {
  text-align: center;
  margin-bottom: 20px;
}

.login-container label {
  display: block;
  margin-bottom: 8px;
}

.login-container input[type="text"],
.login-container input[type="password"] {
  width: 100%;
  padding: 8px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 3px;
  box-sizing: border-box;
}

.login-container input[type="checkbox"] {
  display: inline-block;
  margin-right: 5px;
}

.login-container .btn {
  width: 100%;
  padding: 8px;
  background-color: #3498db;
  border: none;
  border-radius: 3px;
  color: #fff;
  cursor: pointer;
}

.login-container .btn:hover {
  background-color: #2980b9;
}

.login-container .register-link {
  text-align: center;
  margin-top: 10px;
}

.btn {
  font-family: sans-serif;
  font-style: bold;
  font-size: 20px;
}

/*footer style starts here*/

.footer {
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  text-align: center;
  text-decoration: none;
  margin-left: 20px;
}

.footer-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.footer-content img {
  width: 50px;
  height: 50px;
}

.logo a {
  font-display: inherit;
  font-family: sans-serif;
  font-size: 16px;
  color: #000000;
  margin-left: 10px;
}

.footer-content ul {
  list-style-type: none;
  padding: 0;
}

.footer-content ul li {
  display: inline;
  margin-right: 10px;
}

.copyright {
  margin-top: 30px;
}
