  
    .custom-register-wrapper {
      font-family: 'Inter', sans-serif;
      background-color: #f8f9fa;
      min-height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .custom-register-card {
      background-color: #fff;
      padding: 1.5rem;
      border-radius: 0.75rem;
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
                  0 4px 6px -2px rgba(0, 0, 0, 0.05);
      border: 1px solid #e2e8f0;
      max-width: 480px;
      width: 100%;
    }
    .custom-form-heading {
      font-size: 1.5rem;
      font-weight: 600;
      color: #0d6efd;
      margin-bottom: 0.5rem;
      text-align: center;
    }
    .custom-form-subtitle {
      font-size: 0.875rem;
      color: #4a5568;
      margin-bottom: 1rem;
      text-align: center;
    }
    .custom-label {
      font-size: 0.875rem;
      font-weight: 500;
      color: #4a5568;
    }
    .custom-btn-register {
      background-color: #114499;
      color: #fff;
      font-weight: 600;
      border-radius: 0.5rem;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
                  0 2px 4px -1px rgba(0, 0, 0, 0.06);
    }
    .custom-btn-register:hover {
      background-color: #0a58ca;
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
                  0 4px 6px -2px rgba(0, 0, 0, 0.05);
    }
    .custom-link-text {
      font-size: 0.875rem;
      color: #4a5568;
      margin-top: 1rem;
      text-align: center;
    }
    .custom-link-text a {
      color: #0d6efd;
      text-decoration: none;
    }
    .custom-link-text a:hover {
      text-decoration: underline;
    }
  