/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* ================= BODY ================= */
body {
  min-height: 100vh;
  width: 100%;
  background: #f4f6fb;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* ================= CONTAINER ================= */
.container {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* ================= LEFT SIDE ================= */
.left-side {
  flex: 1;
  min-width: 250px;
  background: linear-gradient(180deg, #2b2e83, #1f1b4e);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 20px;
}

.left-side img {
  width: 100%;
  max-width: 220px;
  margin-bottom: 20px;
}

.left-side h2 {
  padding: 10px 20px;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  font-size: 1.5rem;
}

/* ================= RIGHT SIDE ================= */
.right-side {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
}

/* ================= FORM BOX ================= */
.form-box {
  width: 100%;
  max-width: 420px;
}

.form-box h2 {
  margin-bottom: 20px;
  font-size: 1.6rem;
  color: #2b2e83;
}

/* ================= FORM ================= */
form {
  width: 100%;
}

.form-row {
  display: flex;
  gap: 10px;
}

.form-row > div {
  flex: 1;
}

label {
  font-size: 0.85rem;
  margin-bottom: 5px;
  display: block;
}

input, select {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 0.9rem;
}

/* ================= BUTTON ================= */
button {
  width: 100%;
  padding: 12px;
  background: #2b2e83;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #1f1b4e;
}

/* ================= SWITCH LINK ================= */
.switch {
  margin-top: 10px;
  font-size: 0.85rem;
  text-align: center;
}

.switch a {
  color: #2b2e83;
  text-decoration: none;
}

.switch a:hover {
  text-decoration: underline;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
  }

  .left-side, .right-side {
    min-width: 100%;
    padding: 20px;
  }

  .left-side img {
    max-width: 180px;
  }
