body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fef6f6;
}

.container {
  display: flex;
  height: 100vh;
}

.left {
  background: url('bg-left.png') no-repeat center center;
  background-size: cover;
  flex: 1;
  color: #b20000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.left .logo {
  width: 180px;
  margin-bottom: 20px;
}

.right {
  flex: 1;
  background-color: #ffffff;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.right h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
}

form input[type="text"],
form input[type="email"],
form input[type="password"] {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
}

form button {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  background-color: #f57c00;
  border: none;
  color: #fff;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
}

form button.google {
  background-color: #db4437;
}

form button.facebook {
  background-color: #3b5998;
  margin-top: 8px;
}

form .other-login {
  text-align: center;
  margin-top: 20px;
}

.register-link {
  font-size: 14px;
  margin-top: 15px;
  text-align: center;
}

.register-link a {
  color: #b20000;
  text-decoration: none;
}