  .create-account-btn {
      background: linear-gradient(135deg, #0c4a6e, #0891b2);
      color: white;
      border: none;
      padding: 12px 24px;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 8px;
      width: 100%;
      justify-content: center;
  }

  .create-account-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(8, 145, 178, 0.3);
  }

  /* Create Account Modal Styles */
  .create-account-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(5px);
      z-index: 10000;
      animation: fadeIn 0.3s ease;
  }

  .create-account-modal.active {
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .create-account-content {
      background: white;
      border-radius: 16px;
      width: 90%;
      max-width: 500px;
      max-height: 90vh;
      overflow-y: auto;
      animation: slideUp 0.3s ease;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  }

  .create-account-header {
      background: linear-gradient(135deg, #0c4a6e, #0891b2);
      padding: 30px;
      border-radius: 16px 16px 0 0;
      color: white;
      text-align: center;
  }

  .create-account-header h2 {
      margin: 0;
      font-size: 24px;
      font-weight: 600;
  }

  .create-account-header p {
      margin: 8px 0 0;
      opacity: 0.9;
      font-size: 14px;
  }

  .create-account-body {
      padding: 30px;
  }

  .create-account-form .form-group {
      margin-bottom: 20px;
  }

  .create-account-form label {
      display: block;
      margin-bottom: 8px;
      color: #334155;
      font-weight: 500;
      font-size: 14px;
  }

  .create-account-form .required {
      color: #ef4444;
  }

  .create-account-form input {
      width: 100%;
      padding: 12px 16px;
      border: 2px solid #e2e8f0;
      border-radius: 8px;
      font-size: 15px;
      transition: all 0.3s ease;
      font-family: 'Poppins', sans-serif;
  }

  .create-account-form input:focus {
      outline: none;
      border-color: #0891b2;
      box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
  }

  .create-account-form .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
  }

  .create-account-actions {
      display: flex;
      gap: 12px;
      margin-top: 24px;
  }

  .create-account-actions button {
      flex: 1;
      padding: 12px 24px;
      border: none;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s ease;
      font-family: 'Poppins', sans-serif;
  }

  .cancel-btn {
      background: #f1f5f9;
      color: #475569;
  }

  .cancel-btn:hover {
      background: #e2e8f0;
  }

  .submit-btn {
      background: linear-gradient(135deg, #0c4a6e, #0891b2);
      color: white;
  }

  .submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(8, 145, 178, 0.3);
  }

  .submit-btn:disabled {
      opacity: 0.5;
      cursor: not-allowed;
      transform: none;
  }

  /* Success/Error Messages */
  .account-message {
      padding: 12px 16px;
      border-radius: 8px;
      margin-bottom: 20px;
      display: none;
      animation: slideDown 0.3s ease;
  }

  .account-message.success {
      background: #dcfce7;
      color: #166534;
      border: 1px solid #86efac;
  }

  .account-message.error {
      background: #fee2e2;
      color: #991b1b;
      border: 1px solid #fca5a5;
  }

  .account-message.show {
      display: block;
  }

  /* Loading State */
  .create-account-loading {
      display: none;
      text-align: center;
      padding: 20px;
  }

  .create-account-loading.active {
      display: block;
  }

  .create-account-spinner {
      display: inline-block;
      width: 40px;
      height: 40px;
      border: 4px solid #e2e8f0;
      border-top-color: #0891b2;
      border-radius: 50%;
      animation: spin 1s linear infinite;
  }

  @keyframes fadeIn {
      from {
          opacity: 0;
      }

      to {
          opacity: 1;
      }
  }

  @keyframes slideUp {
      from {
          transform: translateY(20px);
          opacity: 0;
      }

      to {
          transform: translateY(0);
          opacity: 1;
      }
  }

  @keyframes slideDown {
      from {
          transform: translateY(-10px);
          opacity: 0;
      }

      to {
          transform: translateY(0);
          opacity: 1;
      }
  }

  @keyframes spin {
      to {
          transform: rotate(360deg);
      }
  }

  /* Responsive Design */
  @media (max-width: 480px) {
      .create-account-form .form-row {
          grid-template-columns: 1fr;
      }

      .create-account-content {
          width: 95%;
          margin: 20px;
      }
  }