body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: url("muj-campus.png") no-repeat center center fixed;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-box {
  display: flex;
  width: 1000px;
  height: 500px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.left-section {
  flex: 2;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo {
  width: 350px;
  margin-bottom: 100px;
}

.left-section h3 {
  margin: 0;
  margin-bottom: 4;
  color: #777;
  font-size: 18px;
}

.left-section h2 {
  margin-top: 5px;
  color: #D2691E;
  font-size: 24px;
}

.left-section input {
  padding: 10px;
  margin-top: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.button-group {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.button-group button {
  padding: 10px 20px;
  border-radius: 20px;
  border: none;
  background-color: #D2691E;
  color: white;
  font-size: 14px;
  cursor: pointer;
  justify-content: center
}


.right-section {
  height: auto;
}

.right-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
