/* Register Form Component Styles */
.register-form {
    max-width: 800px;
    width: 100%;
  }
  
  .register-form .space-y-6 > * + * {
    margin-top: 1.5rem;
  }
  
  .register-form .space-y-4 > * + * {
    margin-top: 1rem;
  }
  
  /* Form sections */
  .form-section {
    padding: 1.5rem;
    background-color: #f9fafb;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
  }
  
  .form-section h3 {
    color: #111827;
    font-weight: 600;
    margin-bottom: 1rem;
  }
  
  /* Language tabs */
  .language-tabs {
    display: flex;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 1rem;
  }
  
  .language-tab {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    background: none;
    border-left: none;
    border-right: none;
    border-top: none;
  }
  
  .language-tab.active {
    border-bottom-color: #3b82f6;
    color: #3b82f6;
  }
  
  .language-tab:not(.active) {
    color: #6b7280;
  }
  
  .language-tab:not(.active):hover {
    color: #374151;
  }
  
  /* Success state */
  .register-form.success {
    max-width: 400px;
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  }
  
  /* Grid layouts */
  .register-form .grid {
    display: grid;
    gap: 1rem;
  }
  
  .register-form .grid.grid-cols-1 {
    grid-template-columns: 1fr;
  }
  
  @media (min-width: 768px) {
    .register-form .grid.md\\:grid-cols-2 {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .register-form .md\\:col-span-2 {
      grid-column: span 2;
    }
  }
  
  
  /* Checkbox styling */
  .register-form input[type="checkbox"] {
    border-radius: 0.25rem;
    border: 1px solid #d1d5db;
  }
  
  .register-form input[type="checkbox"]:checked {
    background-color: #3b82f6;
    border-color: #3b82f6;
  }
  
  .register-form input[type="checkbox"]:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  }
  
  /* Кастомный чекбокс для политики */
  .register-form .custom-checkbox {
    width: 20px;
    height: 20px;
    accent-color: #2563eb;
    border-radius: 4px;
    border: 1px solid #e5e7eb;
    vertical-align: middle;
  }
  
  /* Link styles */
  .register-form a {
    transition: color 0.2s ease-in-out;
  }
  
  .register-form a:hover {
    text-decoration: underline;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .register-form {
      padding: 1rem;
    }
    
    .form-section {
      padding: 1rem;
    }
    
    .register-form h2 {
      font-size: 1.875rem;
    }
    
    .register-form .grid.md\\:grid-cols-2 {
      grid-template-columns: 1fr;
    }
    
    .register-form .md\\:col-span-2 {
      grid-column: span 1;
    }
  }
