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;
}

.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 {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.daftar-btn {
  background-color: #ff8800;
  color: white;
  font-weight: bold;
  padding: 12px;
  border: none;
  border-radius: 6px;
  width: 100%;
  cursor: pointer;
  font-size: 16px;
}

.login-link {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
}