* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* 1. Main Wrapper with Background Image */
.main-wrapper {
  /* This links to a high-res, blurred medical hallway image matching your mockup */
  background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(240, 247, 255, 0.5)), 
              url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?q=80&w=2000&auto=format&fit=crop');
  
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.content-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  width: 100%;
  max-width: 1100px;
}

/* 2. Left Side: Header & Features */
.header-section {
  flex: 1;
  text-align: left;
}

.header-section h1 {
  color: #0062cc;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.features {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.features span {
  background: rgba(0, 123, 255, 0.1);
  color: #0056b3;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.tagline {
  color: #445;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 500px;
}

/* 3. Right Side: The Form Box (Glassmorphism inspired) */
.form-box {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
  backdrop-filter: blur(10px); /* Blurs background slightly for premium feel */
}

.form-box h3 {
  margin-bottom: 25px;
  font-size: 1.6rem;
  color: #222;
  text-align: center;
}

/* 4. Input Groups with Icons */
.input-group {
  position: relative;
  margin-bottom: 18px;
}

.input-group i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  font-size: 0.9rem;
}

.input-group input, 
.input-group select {
  width: 100%;
  padding: 14px 14px 14px 45px; /* Extra left padding for icon */
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fdfdfd;
}

.input-group input:focus, 
.input-group select:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
  background: white;
}

/* 5. Buttons & Links */
.btn-primary {
  width: 100%;
  padding: 14px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, background 0.3s;
  margin-top: 10px;
}

.btn-primary:hover {
  background: #0056b3;
  transform: translateY(-1px);
}

.footer-text {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
  color: #666;
}

.switch {
  color: #007bff;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
}

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

/* 6. Mobile Responsiveness */
@media (max-width: 900px) {
  .content-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .header-section {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .features {
    justify-content: center;
  }
}