/* Base styles */
.signup-page {
  font-family: Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.signup-page .text-xs { font-size: 0.75rem; line-height: 1rem; }      
.signup-page .text-sm { font-size: 0.875rem; line-height: 1.25rem; }   
.signup-page .text-base { font-size: 1rem; line-height: 1.5rem; }      
.signup-page .text-lg { font-size: 1.125rem; line-height: 1.75rem; }   
.signup-page .text-xl { font-size: 1.25rem; line-height: 1.75rem; }     
.signup-page .text-2xl { font-size: 1.5rem; line-height: 2rem; }        
.signup-page .text-3xl { font-size: 1.875rem; line-height: 2.25rem; }  
.signup-page .text-4xl { font-size: 2.25rem; line-height: 2.5rem; }    

/* Line heights */
.signup-page .leading-tight { line-height: 1.25; }
.signup-page .leading-relaxed { line-height: 1.625; }

/* Font weights */
.signup-page .font-medium { font-weight: 500; }
.signup-page .font-semibold { font-weight: 600; }
.signup-page .font-bold { font-weight: 700; }

/* Colors - match design exactly */
.signup-page .text-gray-500 { color: #6B7280; }
.signup-page .text-gray-600 { color: #4B5563; }
.signup-page .text-gray-700 { color: #374151; }
.signup-page .text-gray-900 { color: #111827; }

/* Headings */
.signup-page h1 {
  font-size: 1.875rem; 
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem; 
  line-height: 1.2;
}

.signup-page .mb-8 > h1 + p {
  font-size: 1rem;     
  color: #4B5563;
  line-height: 1.5;
}

/* Mobile logo text */
.signup-page .text-center .text-2xl {
  font-size: 1.5rem;    
  font-weight: 700;
}

/* Hero section - left side */
.signup-page .text-white.text-xl {
  font-size: 1.25rem;  
  font-weight: 600;
}

.signup-page .text-white h2 {
  font-size: 2.25rem;  
  font-weight: 700;
  line-height: 1.25;
}

.signup-page .text-white p {
  font-size: 1.25rem; 
  line-height: 1.625;
}

/* Labels */
.signup-page label {
  font-size: 0.875rem; 
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
  display: block;
}

/* Input fields */
.signup-page input[type="text"],
.signup-page input[type="email"],
.signup-page input[type="tel"],
.signup-page input[type="password"] {
  width: 100%;
  height: 3rem;        
  padding: 0 1rem;      
  padding-right: 3rem; 
  border: 1px solid #D1D5DB;
  border-radius: 0.5rem; 
  font-size: 1rem;    
  color: #111827;
  background-color: #FFFFFF;
  transition: all 0.2s ease;
}

.signup-page input[type="text"]:focus,
.signup-page input[type="email"]:focus,
.signup-page input[type="tel"]:focus,
.signup-page input[type="password"]:focus {
  outline: none;
  border-color: #1C61E7;
  box-shadow: 0 0 0 3px rgba(28, 97, 231, 0.2);
}

.signup-page input::placeholder {
  color: #9CA3AF;
}

/* Password toggle button  */
.signup-page .password-toggle {
  position: absolute;
  right: 0.75rem;      
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0.25rem;     
  cursor: pointer;
  color: #6B7280;      
  transition: color 0.2s ease;
}

.signup-page .password-toggle:hover {
  color: #374151;      
}

.signup-page .password-toggle svg {
  width: 1.25rem;      
  height: 1.25rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* Password toggle icon states */
.signup-page .password-toggle__icon {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}

.signup-page .password-toggle .password-toggle__icon--show {
  display: block;
  position: static;
}

.signup-page .password-toggle .password-toggle__icon--hide {
  display: none;
}

.signup-page .password-toggle.is-active .password-toggle__icon--show {
  display: none;
}

.signup-page .password-toggle.is-active .password-toggle__icon--hide {
  display: block;
  position: static;
}

/* Buttons */
.signup-page button[type="submit"],
.signup-page .btn-primary {
  width: 100%;
  height: 3rem;        
  background-color: #1C61E7;
  color: #FFFFFF;
  font-weight: 500;
  font-size: 1rem;     
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.signup-page button[type="submit"]:hover,
.signup-page .btn-primary:hover {
  background-color: rgba(28, 97, 231, 0.9);
}

.signup-page button[type="submit"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Social buttons */
.signup-page .social-btn {
  height: 3rem;        
  border: 1px solid #D1D5DB;
  background-color: #FFFFFF;
  color: #111827;
  font-size: 1rem;     
  border-radius: 0.5rem;
  transition: background-color 0.2s ease;
}

.signup-page .social-btn:hover {
  background-color: #F9FAFB;
}

/* Account type cards */
.signup-page .option {
  border: 2px solid #E5E7EB;
  border-radius: 0.75rem; 
  padding: 1rem;         
  cursor: pointer;
  transition: all 0.2s ease;
}

.signup-page .option:hover {
  border-color: #D1D5DB;
}

.signup-page .option.active {
  border-color: #1C61E7;
  background-color: rgba(28, 97, 231, 0.05);
}

.signup-page .option h4 {
  font-size: 1rem;     
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.25rem;
}

.signup-page .option p {
  font-size: 0.875rem; 
  color: #6B7280;
}

/* Progress indicators */
.signup-page .progress-step {
  width: 1.5rem;        
  height: 1.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;  
  font-weight: 500;
}

/* Helper text */
.signup-page .text-xs.text-gray-500 {
  font-size: 0.75rem;  
  color: #6B7280;
  margin-top: 0.5rem;  
}

/* Back button */
.signup-page .back-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #1C61E7;
  font-size: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.signup-page .back-btn:hover {
  color: rgba(28, 97, 231, 0.8);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .signup-page h1 {
    font-size: 1.5rem;  
  }
  
  .signup-page .text-white h2 {
    font-size: 1.875rem; 
  }
}

@media (max-width: 640px) {
  .signup-page input[type="text"],
  .signup-page input[type="email"],
  .signup-page input[type="tel"],
  .signup-page input[type="password"],
  .signup-page button[type="submit"] {
    height: 2.75rem;  
  }
}

