body {
  background: linear-gradient(to bottom, #dccfc0, #fff);
  font-family: 'Segoe UI', sans-serif;
}

.form-section {
  height: 100vh;
  padding: 80px 15px;
  display: flex;
  justify-content: center;
}

.form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  max-width: 620px;
  margin: auto;
  width: 100%;
}

.form-title {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #000;
  text-align: center;
}

.form-subtitle {
  text-align: center;
  color: #555;
  margin-bottom: 30px;
}

.form-control {
  padding-left: 45px;
  height: 52px;
  border-radius: 12px;
}

.input-icon {
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  color: #d19a2a;
  font-size: 18px;
  z-index: 3;
}

.form-floating label {
  padding-left: 45px;
}

.btn-register {
  background: linear-gradient(135deg, #d19a2a, #b8860b);
  border: none;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  padding: 14px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-register:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(209,154,42,0.4);
}

.trust-text {
  font-size: 14px;
  color: #666;
  text-align: center;
  margin-top: 15px;
}

.form-control.with-icon {
  padding-left: 55px !important;
}

.form-floating label.with-icon-label {
  padding-left: 55px !important;
}