/* Register page specific styles */
body {
    font-family: 'Noto Sans', sans-serif;
    margin: 0;
    padding: 0;
    padding-top: 70px;
    background-color: var(--primary-bg);
    color: var(--primary-text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  .register-container {
    display: flex;
    flex: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 0;
  }
  
  /* Left side with form */
  .register-left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
  }
  
  .register-left::after {
    content: "";
    position: absolute;
    top: 10%;
    right: 0;
    height: 80%;
    width: 1px;
    background: var(--accent-color);
  }
  
  .form-wrapper {
    width: 100%;
    max-width: 480px;
    padding: 20px;
  }
  
  .form-wrapper h1 {
    font-size: 2.4rem;
    margin-bottom: 15px;
    color: var(--primary-text);
    font-weight: 700;
  }
  
  .form-intro {
    color: var(--secondary-text);
    margin-bottom: 30px;
    font-size: 1.1rem;
  }
  
  /* Form elements */
  .form-group {
    margin-bottom: 24px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-text);
  }
  
  .form-group input {
    width: 100%;
    padding: 12px;
    background-color: var(--secondary-bg);
    border: 1px solid var(--accent-color);
    color: var(--primary-text);
    border-radius: 6px;
    font-size: 1rem;
    transition: var(--transition);
  }
  
  .form-group input:focus {
    border-color: var(--highlight-color);
    box-shadow: 0 0 0 2px rgba(255, 51, 102, 0.2);
    outline: none;
  }
  
  /* Password strength meter */
  .password-strength-meter {
    display: flex;
    gap: 4px;
    margin-top: 8px;
  }
  
  .meter-segment {
    height: 4px;
    flex: 1;
    background-color: var(--accent-color);
    border-radius: 2px;
  }
  
  .meter-segment.weak {
    background-color: #ff4a4a;
  }
  
  .meter-segment.medium {
    background-color: #ffaa00;
  }
  
  .meter-segment.strong {
    background-color: #00cc66;
  }
  
  /* Usage type styles */
  .usage-type {
    margin-bottom: 24px;
  }
  
  .usage-type p {
    margin-bottom: 10px;
    font-weight: 500;
  }
  
  .checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .checkbox-row {
    display: flex;
    align-items: center;
  }
  
  .checkbox-row input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    accent-color: var(--highlight-color);
  }
  
  .terms-agreement {
    margin-bottom: 24px;
  }
  
  .terms-agreement a {
    color: var(--highlight-color);
    text-decoration: none;
    transition: var(--transition);
  }
  
  .terms-agreement a:hover {
    text-decoration: underline;
  }
  
  /* Register button */
  .register-button {
    width: 100%;
    padding: 14px;
    background-color: var(--highlight-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 20px;
  }
  
  .register-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--hover-shadow);
  }
  
  .login-link {
    text-align: center;
    color: var(--secondary-text);
    font-size: 0.9rem;
  }
  
  .login-link a {
    color: var(--highlight-color);
    text-decoration: none;
    font-weight: 500;
  }
  
  .login-link a:hover {
    text-decoration: underline;
  }
  
  /* Hidden elements */
  .hidden {
    display: none;
  }
  
  /* Right side with graphic and tips */
  .register-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }
  
  .graphic-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    width: 100%;
  }
  
  .illustration {
    width: 100%;
    max-width: 400px;
    margin: 20px 0;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
    animation: float 6s ease-in-out infinite;
  }
  
  @keyframes float {
    0% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-15px);
    }
    100% {
      transform: translateY(0px);
    }
  }
  
  /* Tip box styling */
  .tip-box {
    background-color: var(--secondary-bg);
    border: 1px solid var(--accent-color);
    border-left: 4px solid var(--highlight-color);
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 30px;
    width: 100%;
    box-shadow: var(--box-shadow);
    transition: all 0.5s ease;
  }
  
  .tip-box h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.2rem;
    color: var(--highlight-color);
  }
  
  #tip-content {
    color: var(--secondary-text);
    line-height: 1.6;
  }
  
  /* Benefits list */
  .benefits {
    width: 100%;
    margin-top: 30px;
  }
  
  .benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
  }
  
  .benefit-icon {
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .benefit-text {
    color: var(--secondary-text);
    font-size: 1rem;
  }
  
  /* Responsive design */
  @media (max-width: 1024px) {
    .register-container {
      flex-direction: column;
      padding: 20px;
    }
    
    .register-left {
      width: 100%;
      margin-bottom: 40px;
    }
    
    .register-left::after {
      display: none;
    }
    
    .register-right {
      width: 100%;
    }
    
    .form-wrapper {
      max-width: 100%;
    }
    
    .illustration {
      max-width: 300px;
    }
  }
  
  @media (max-width: 768px) {
    .form-wrapper h1 {
      font-size: 2rem;
    }
    
    .checkbox-group {
      flex-direction: column;
    }
    
    .illustration {
      max-width: 250px;
    }
  }
  
  @media (max-width: 480px) {
    .form-wrapper h1 {
      font-size: 1.8rem;
    }
    
    .form-intro {
      font-size: 1rem;
    }
    
    .register-container {
      padding: 20px 15px;
    }
  }