.signup-card {
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  width: 400px;
}

.signup-card h2 {
  font-size: 28px;
  margin-bottom: 24px;
  color: #1E1E1E;
  font-weight: 600;
}

/* Toggle Container */
.toggle-container {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.toggle-option {
  flex: 1;
  padding: 24px 16px;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
  background: white;
}

.toggle-option.selected {
  background-color: #d0d1ff;
  border: 1px solid #1B3FAB;
}

.toggle-option i {
  font-size: 24px;
  margin-bottom: 8px;
  color: #1B3FAB;
}

.toggle-option div {
  font-size: 16px;
  color: #333;
}

/* Create Account Button */
.create-button {
  width: 100%;
  padding: 16px;
  background-color: #1B3FAB;
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.create-button:hover {
  background-color: #1B3FAB;
}

/* Features Section */
.features {
  padding-left: 48px;
}

.features h1 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 32px;
  color: #1E1E1E;
}

.feature {
  margin-bottom: 24px;
}

.feature h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1E1E1E;
  margin-bottom: 8px;
}

.feature p {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
}

/* Action Buttons */
.buttons {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.buttons .create-button {
  flex: 2;
}

.secondary-button {
  flex: 1;
  padding: 16px 32px;
  background: white;
  border: 1px solid #1B3FAB;
  color: #1B3FAB;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.secondary-button:hover {
  background: #F5FBF5;
}

/* Responsive Design */
@media (max-width: 768px) {
  .signup-card {
      width: 100%;
  }
  
  .features {
      padding-left: 0;
      margin-top: 32px;
  }
  
  .buttons {
      flex-direction: column;
  }
  
  .secondary-button {
      width: 100%;
  }
}