:root {
  --primary-purple: #4200FF;
  --secondary-purple: #a29bfe;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f9fa;
}

.signup-container {
  min-height: 100vh;
  background: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.left-panel {
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.left-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
}

.hospital-logo {
  font-size: 1.5rem;
  font-weight: bold;
  z-index: 2;
  position: relative;
}

.doctors-image {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 2rem;
}

.doctors-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.right-panel {
  padding: 3rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.signup-form {
  width: 100%;
  max-width: 400px;
}

.form-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #2d3436;
  margin-bottom: 2rem;
}

.form-label {
  font-weight: 500;
  color: #636e72;
  margin-bottom: 0.5rem;
}

.form-control {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 0.2rem rgba(108, 92, 231, 0.25);
}

.form-control::placeholder {
  color: #b2bec3;
}

.btn-signup {
  background: var(--primary-purple);
  border: none;
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  width: 100%;
  transition: all 0.3s ease;
}

.btn-signup:hover {
  background: #5f4fcf;
  transform: translateY(-1px);
}

.terms-checkbox {
  margin-right: 0.5rem;
}

.terms-text {
  font-size: 0.9rem;
  color: #636e72;
}

.terms-link {
  color: var(--primary-purple);
  text-decoration: none;
}

.terms-link:hover {
  text-decoration: underline;
}

.login-link {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #636e72;
}

.login-link a {
  color: var(--primary-purple);
  text-decoration: none;
  font-weight: 500;
}

.login-link a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .left-panel {
    min-height: 300px;
  }

  .right-panel {
    padding: 2rem 1rem;
  }

  .doctors-image {
    margin-top: 1rem;
  }
}
