.register-container {
    max-width: 1000px;
    margin: 0 auto 60px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
  }
  
  .register-header {
    text-align: center;
    padding: 40px 20px;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
  }
  
  .register-header h1 {
    font-size: 32px;
    color: #333;
    margin-bottom: 15px;
  }
  
  .register-header p {
    color: #666;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
  }
  
  /* Registration Options */
  .register-options {
    padding: 30px;
    background-color: #f0f7ff;
    border-bottom: 1px solid #e0e0e0;
  }
  
  .option-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
  }
  
  .option-tabs::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background-color: #ddd;
    z-index: 1;
  }
  
  .option-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 30px;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    background-color: #fff;
    border-radius: 8px 8px 0 0;
    margin: 0 5px;
    min-width: 120px;
  }
  
  .option-tab i {
    font-size: 24px;
    margin-bottom: 10px;
    color: #666;
    transition: color 0.3s ease;
  }
  
  .option-tab span {
    font-weight: 500;
    color: #666;
    transition: color 0.3s ease;
  }
  
  .option-tab.active {
    border-bottom-color: #0066cc;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
  }
  
  .option-tab.active i,
  .option-tab.active span {
    color: #0066cc;
  }
  
  .option-tab:hover:not(.active) {
    background-color: #f5f5f5;
  }
  
  .option-content {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }
  
  .option-description {
    text-align: center;
  }
  
  .option-description h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
  }
  
  .option-description p {
    color: #666;
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
  }
  
  .benefit {
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
    padding: 15px 20px;
    border-radius: 8px;
    min-width: 200px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .benefit:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .benefit i {
    font-size: 20px;
    color: #0066cc;
    margin-right: 15px;
  }
  
  .benefit span {
    font-weight: 500;
    color: #333;
  }
  
  /* Register Form */
  .register-form-container {
    padding: 30px;
  }
  
  .register-form {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .form-section {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
  }
  
  .form-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  
  .form-section h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: #333;
    position: relative;
    padding-left: 15px;
  }
  
  .form-section h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: #0066cc;
    border-radius: 2px;
  }
  
  .required {
    color: #cc0033;
    margin-left: 3px;
  }
  
  .form-text {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #666;
  }
  
  /* Password Strength */
  .password-input {
    position: relative;
  }
  
  .password-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 5px;
  }
  
  .password-strength {
    margin-top: 10px;
  }
  
  .strength-meter {
    display: flex;
    gap: 5px;
    margin-bottom: 5px;
  }
  
  .strength-segment {
    height: 5px;
    flex: 1;
    background-color: #e0e0e0;
    border-radius: 2px;
  }
  
  /*.strength-segment:nth-child(1) {*/
  /*  background-color: #cc0033;*/
  /*}*/
  
  .strength-text {
    font-size: 12px;
    color: #666;
  }
  
  /* Checkbox Styling */
  .checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
  }
  
  .checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 3px;
  }
  
  .checkbox-group label {
    font-size: 14px;
    color: #333;
  }
  
  .checkbox-group a {
    color: #0066cc;
    text-decoration: underline;
  }
  
  /* CAPTCHA */
  .captcha-container {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
  
  .captcha-image {
    flex-grow: 1;
    max-width: 300px;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
  }
  
  .refresh-captcha {
    background: none;
    border: none;
    color: #0066cc;
    font-size: 18px;
    margin-left: 10px;
    cursor: pointer;
    padding: 5px;
  }
  
  .captcha-input {
    max-width: 300px;
  }
  
  /* Interests Tags */
  .interests-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
  }
  
  .interest-tag {
    position: relative;
  }
  
  .interest-checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .interest-label {
    display: inline-block;
    padding: 8px 15px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .interest-checkbox:checked + .interest-label {
    background-color: #0066cc;
    color: white;
    border-color: #0066cc;
  }
  
  .interest-label:hover {
    background-color: #e5e5e5;
  }
  
  .interest-checkbox:checked + .interest-label:hover {
    background-color: #0055aa;
  }
  
  /* Form Actions */
  .form-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
  }
  
  /* .btn-primary {
    padding: 15px 40px;
    font-size: 16px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 300px;
  } */
  
  .login-link {
    font-size: 14px;
    color: #666;
  }
  
  .login-link a {
    color: #0066cc;
    font-weight: 500;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .option-tabs {
      flex-direction: column;
      align-items: center;
    }
  
    .option-tab {
      width: 100%;
      max-width: 300px;
      margin-bottom: 10px;
      border-radius: 8px;
    }
  
    .option-tabs::after {
      display: none;
    }
  
    .benefits {
      flex-direction: column;
      align-items: center;
    }
  
    .benefit {
      width: 100%;
    }
  }
  
  @media (max-width: 576px) {
    .register-header {
      padding: 30px 15px;
    }
  
    .register-header h1 {
      font-size: 24px;
    }
  
    .register-header p {
      font-size: 16px;
    }
  
    .register-options,
    .register-form-container {
      padding: 20px 15px;
    }
  
    .form-section h3 {
      font-size: 18px;
    }
  }
  
  /* Add these animation keyframes to the existing register.css file */
  @keyframes slideIn {
    from {
      transform: translateX(100%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  @keyframes slideOut {
    from {
      transform: translateX(0);
      opacity: 1;
    }
    to {
      transform: translateX(100%);
      opacity: 0;
    }
  }
  
  /* Notification styles */
  .notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    padding: 15px;
    z-index: 1000;
    max-width: 350px;
    animation: slideIn 0.3s forwards;
    border-left: 4px solid #28a745;
  }
  
  .notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .close-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    margin-left: 15px;
    color: #666;
  }
  