body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: url('bg.jpg') center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.register-container {
  display: flex;
  max-width: 900px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.register-left {
  flex: 1;
  padding: 50px 40px;
  background: #f5f5f5;
}

.register-left h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.register-left p {
  margin: 20px 0;
  line-height: 1.5;
  font-size: 14px;
  color: #333;
}

.login-link {
  display: inline-block;
  margin-top: 30px;
  text-decoration: none;
  color: #d35400;
  font-weight: bold;
  font-size: 15px;
}

.register-right {
  flex: 2;
  padding: 50px 40px;
  background: #fff;
}

.register-right form {
  display: flex;
  flex-direction: column;
}

.register-right label {
  margin: 12px 0 5px;
  font-weight: bold;
  font-size: 14px;
}

.register-right input,
.register-right select {
  padding: 12px;
  border: 1px solid #bbb;
  border-radius: 4px;
  font-size: 14px;
}

.dob {
  display: flex;
  gap: 10px;
}

.dob select {
  flex: 1;
}

.mobile-input {
  display: flex;
  align-items: center;
}

.mobile-input .flag {
  background: #eee;
  padding: 12px 15px;
  border: 1px solid #bbb;
  border-right: none;
  border-radius: 4px 0 0 4px;
  font-size: 14px;
}

.mobile-input input {
  flex: 1;
  border-left: none;
  border-radius: 0 4px 4px 0;
  border: 1px solid #bbb;
  padding: 12px;
  font-size: 14px;
}

.create-btn {
  width: 100%;
  padding: 12px;
  background: #f5b041; /* same yellow shade */
  border: none; /* no outline, just like your example */
  color: #fff; /* white text */
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px; /* slightly rounded corners */
  margin-top: 15px; /* spacing above */
}
