* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #f0f2f5;
}

.container {
  display: flex;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 900px;
  width: 100%;
}

.login-box {
  flex: 1;
  padding: 40px;
}

.login-box h2 {
  margin-bottom: 30px;
  color: #333;
}

.input-group {
  position: relative;
  margin-bottom: 20px;
}

.input-group i {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  color: #777;
}

.input-group input {
  width: 100%;
  padding: 12px 12px 12px 40px;
  border: 1px solid #ccc;
  border-radius: 30px;
  outline: none;
  transition: 0.3s;
}

.input-group input:focus {
  border-color: #4b7bec;
}

.btn {
  width: 100%;
  padding: 12px;
  background: #4b7bec;
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s;
}

.btn:hover {
  background: #3867d6;
}

.footer {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
}

.footer a {
  color: #4b7bec;
  text-decoration: none;
}

.login-image {
  flex: 1;
  background: #f7f9fc;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.login-image img {
  width: 100%;
  max-width: 400px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .login-image {
    display: none;
  }

  .login-box {
    padding: 30px;
  }
}