* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f5f7fa;
}

.container {
  display: flex;
  width: 90%;
  max-width: 900px;
  height: 500px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
}

.form-container {
  flex: 1;
  background: #fff;
  padding: 40px;
}

.form-container h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.form-container p {
  margin-bottom: 20px;
  color: #555;
}

label {
  display: block;
  margin-bottom: 5px;
  margin-top: 15px;
  font-weight: 600;
}

input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.password-wrap {
  position: relative;
}

.eye {
  position: absolute;
  right: 10px;
  top: 12px;
  cursor: pointer;
  color: #aaa;
}

.options {
  display: flex;
  justify-content: space-between;
  margin: 15px 0;
  font-size: 14px;
}

.btn {
  width: 100%;
  padding: 12px;
  background: #3e5eff;
  border: none;
  color: #fff;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  margin-bottom: 10px;
}

.signup-text {
  font-size: 14px;
}

.signup-text a {
  color: #3e5eff;
  text-decoration: none;
}

.info-container {
  flex: 1;
  background: #0e144a;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.info-container h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #fff;
}

.info-container p {
  font-size: 16px;
  color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    height: auto;
  }

  .info-container {
    padding: 20px;
  }
}
