body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  background-color: #e6e6fa;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  display: flex;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 100%;
  max-width: 900px;
  height: 500px;
}

.left {
  padding: 40px;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.left h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.left p {
  font-size: 14px;
  color: #888;
  margin-bottom: 30px;
}

.input-group {
  margin-bottom: 20px;
  position: relative;
}

.input-group input {
  width: 100%;
  padding: 15px 15px 15px 40px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
}

.input-group i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
}

.login-btn {
  background-color: #ff8a00;
  color: white;
  padding: 15px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  margin-bottom: 20px;
}

.login-btn:hover {
  background-color: #0c87ff;
}

.right {
  background-color: #ff8a00;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.right img {
  border-radius: 20px;
  width: 85%;
}

.right .icon {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: white;
  border-radius: 50%;
  padding: 10px;
}

.footer {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
}

.footer img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
}

.footer div {
  display: flex;
  flex-direction: column;
}

.footer div span {
  font-size: 14px;
}

.footer div span:first-child {
  font-weight: 500;
}

.footer div span:last-child {
  color: #888;
}

.footer-right {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 14px;
  color: #888;
}

.errorMsg {
  color: red;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    height: auto;
  }

  .left,
  .right {
    width: 100%;
  }

  .right {
    height: 300px;
  }

  .right img {
    width: 100%;
    height: auto;
  }
}

