@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");  :root {
--rp-primary: #22c55e; --rp-primary-dark: #16a34a; --rp-primary-light: #86efac; --rp-secondary: #10b981; --rp-success: #48bb78;
--rp-error: #f56565;
--rp-warning: #ed8936;
--rp-info: #38bdf8; --rp-gray-50: #f9fafb;
--rp-gray-100: #f3f4f6;
--rp-gray-200: #e5e7eb;
--rp-gray-300: #d1d5db;
--rp-gray-400: #9ca3af;
--rp-gray-500: #6b7280;
--rp-gray-600: #4b5563;
--rp-gray-700: #374151;
--rp-gray-800: #1f2937;
--rp-gray-900: #111827;
--rp-white: #ffffff;
--rp-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
--rp-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08), 0 1px 2px 0 rgba(0, 0, 0, 0.04);
--rp-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
--rp-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
--rp-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
--rp-border-radius: 8px;
--rp-border-radius-sm: 6px;
--rp-border-radius-lg: 12px;
--rp-transition: all 0.2s ease-in-out;
} .rp-registration-container *,
.rp-dashboard *,
.rp-card *,
.rp-alert * {
box-sizing: border-box;
} .rp-registration-container,
.rp-dashboard,
.rp-dashboard *,
.rp-registration-container *,
.rp-card,
.rp-card *,
.rp-alert,
.rp-alert *,
.rp-form,
.rp-form *,
.rp-btn,
.rp-btn * {
font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
font-feature-settings: "cv02", "cv03", "cv04", "cv11";
font-variant-numeric: tabular-nums;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-rendering: optimizeLegibility;
} .rp-registration-container svg,
.rp-dashboard svg,
.rp-card svg,
.rp-alert svg,
.rp-icon,
.rp-label-icon,
.rp-btn-icon,
.rp-registration-icon svg {
width: 16px !important;
height: 16px !important;
display: inline-block !important;
flex-shrink: 0 !important;
fill: currentColor !important;
stroke: currentColor !important;
vertical-align: middle !important;
max-width: 16px !important;
max-height: 16px !important;
} .rp-registration-icon svg {
width: 24px !important;
height: 24px !important;
max-width: 24px !important;
max-height: 24px !important;
}
.rp-dashboard-title .rp-icon {
width: 32px !important;
height: 32px !important;
max-width: 32px !important;
max-height: 32px !important;
}
.rp-stat-icon svg {
width: 30px !important;
height: 30px !important;
max-width: 30px !important;
max-height: 30px !important;
}
.rp-empty-icon {
width: 48px !important;
height: 48px !important;
max-width: 48px !important;
max-height: 48px !important;
} .rp-registration-container {
max-width: 500px;
margin: 2rem auto;
padding: 0 1rem;
font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
.rp-registration-card {
background: var(--rp-white);
border-radius: var(--rp-border-radius-lg);
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
overflow: hidden;
border: 1px solid var(--rp-gray-200);
margin-top: 1rem;
}
.rp-registration-header {
text-align: center;
padding: 2rem 2rem 1.5rem;
background: linear-gradient(135deg, var(--rp-primary) 0%, var(--rp-primary-dark) 100%);
color: var(--rp-white);
position: relative;
}
.rp-registration-icon {
width: 60px;
height: 60px;
margin: 0 auto 1rem;
background: rgba(255, 255, 255, 0.2);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
backdrop-filter: blur(10px);
}
.rp-registration-title {
font-size: 1.75rem;
font-weight: 700;
margin: 0 0 0.5rem;
letter-spacing: -0.025em;
}
.rp-registration-subtitle {
font-size: 1rem;
opacity: 0.9;
margin: 0;
font-weight: 400;
} .rp-form {
padding: 2rem;
}
.rp-form-row {
display: grid;
grid-template-columns: 1fr;
gap: 1.5rem;
margin-bottom: 1.5rem;
}
@media (min-width: 600px) {
.rp-form-row {
grid-template-columns: 1fr 1fr;
}
}
.rp-form-group {
position: relative;
}
.rp-label {
display: flex;
align-items: center;
font-weight: 600;
color: var(--rp-gray-700);
margin-bottom: 0.5rem;
font-size: 0.875rem;
}
.rp-label-icon {
margin-right: 0.5rem;
color: var(--rp-primary);
flex-shrink: 0;
}
.rp-input {
width: 100%;
padding: 0.75rem 1rem;
border: 1px solid var(--rp-gray-300);
border-radius: var(--rp-border-radius);
font-size: 0.875rem;
transition: var(--rp-transition);
background: var(--rp-white);
color: var(--rp-gray-900);
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.rp-input:focus {
outline: none;
border-color: var(--rp-primary);
box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.rp-input::placeholder {
color: var(--rp-gray-400);
font-size: 0.875rem;
}
.rp-input-help {
font-size: 0.75rem;
color: var(--rp-gray-500);
margin-top: 0.25rem;
font-style: italic;
} .rp-form-terms {
margin: 1.5rem 0;
}
.rp-checkbox-label {
display: flex;
align-items: flex-start;
cursor: pointer;
font-size: 0.875rem;
color: var(--rp-gray-600);
line-height: 1.5;
}
.rp-checkbox {
position: absolute;
opacity: 0;
cursor: pointer;
}
.rp-checkmark {
width: 18px;
height: 18px;
border: 2px solid var(--rp-gray-300);
border-radius: 4px;
margin-right: 0.75rem;
margin-top: 2px;
flex-shrink: 0;
position: relative;
background: var(--rp-white);
transition: var(--rp-transition);
}
.rp-checkbox:checked + .rp-checkmark {
background: var(--rp-primary);
border-color: var(--rp-primary);
}
.rp-checkbox:checked + .rp-checkmark::after {
content: '';
position: absolute;
left: 5px;
top: 1px;
width: 4px;
height: 8px;
border: solid var(--rp-white);
border-width: 0 2px 2px 0;
transform: rotate(45deg);
}
.rp-link {
color: var(--rp-primary);
text-decoration: none;
font-weight: 600;
transition: var(--rp-transition);
}
.rp-link:hover {
color: var(--rp-primary-dark);
text-decoration: underline;
} .rp-btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 0.75rem 1.5rem;
border: none;
border-radius: var(--rp-border-radius);
font-weight: 600;
font-size: 0.875rem;
text-decoration: none;
cursor: pointer;
transition: var(--rp-transition);
position: relative;
overflow: hidden;
}
.rp-btn:focus {
outline: none;
box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.3);
}
.rp-btn-primary {
background: linear-gradient(135deg, var(--rp-primary) 0%, var(--rp-primary-dark) 100%);
color: var(--rp-white);
box-shadow: var(--rp-shadow-md);
}
.rp-btn-primary:hover {
transform: translateY(-1px);
box-shadow: var(--rp-shadow-lg);
}
.rp-btn-secondary {
background: var(--rp-gray-100);
color: var(--rp-gray-700);
border: 1px solid var(--rp-gray-200);
}
.rp-btn-secondary:hover {
background: var(--rp-gray-200);
transform: translateY(-1px);
}
.rp-btn-outline {
background: transparent;
color: var(--rp-primary);
border: 2px solid var(--rp-primary);
}
.rp-btn-outline:hover {
background: var(--rp-primary);
color: var(--rp-white);
}
.rp-btn-lg {
padding: 1rem 2rem;
font-size: 1rem;
width: 100%;
margin-top: 1rem;
}
.rp-btn-sm {
padding: 0.5rem 1rem;
font-size: 0.75rem;
}
.rp-btn-icon {
margin-right: 0.5rem;
flex-shrink: 0;
}
.rp-btn-sm .rp-icon {
width: 14px;
height: 14px;
margin-right: 0.25rem;
} .rp-registration-footer {
text-align: center;
padding: 1.5rem 2rem 2rem;
background: var(--rp-gray-50);
color: var(--rp-gray-600);
font-size: 0.875rem;
border-top: 1px solid var(--rp-gray-200);
} .rp-alert {
display: flex;
align-items: center;
padding: 1rem 1.5rem;
border-radius: var(--rp-border-radius);
margin-bottom: 1.5rem;
font-weight: 500;
font-size: 0.875rem;
line-height: 1.4;
}
.rp-alert .rp-icon {
margin-right: 0.75rem;
flex-shrink: 0;
}
.rp-alert-success {
background: rgba(72, 187, 120, 0.1);
color: #22543d;
border: 1px solid rgba(72, 187, 120, 0.3);
}
.rp-alert-success .rp-icon {
color: var(--rp-success);
}
.rp-alert-error {
background: rgba(245, 101, 101, 0.1);
color: #742a2a;
border: 1px solid rgba(245, 101, 101, 0.3);
}
.rp-alert-error .rp-icon {
color: var(--rp-error);
}
.rp-alert-warning {
background: rgba(237, 137, 54, 0.1);
color: #7b341e;
border: 1px solid rgba(237, 137, 54, 0.3);
}
.rp-alert-warning .rp-icon {
color: var(--rp-warning);
}
.rp-alert-info {
background: rgba(66, 153, 225, 0.1);
color: #2a4365;
border: 1px solid rgba(66, 153, 225, 0.3);
}
.rp-alert-info .rp-icon {
color: var(--rp-info);
} .rp-card {
background: var(--rp-white);
border-radius: var(--rp-border-radius);
box-shadow: var(--rp-shadow);
padding: 2rem;
border: 1px solid var(--rp-gray-200);
} .rp-dashboard {
max-width: 1200px;
margin: 0 auto;
padding: 2rem 1rem;
font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
.rp-dashboard-header {
text-align: center;
margin-bottom: 3rem;
padding: 2rem;
background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
color: var(--rp-gray-800);
border-radius: var(--rp-border-radius-lg);
position: relative;
overflow: hidden;
border: 1px solid var(--rp-gray-200);
}
.rp-dashboard-title {
display: flex;
align-items: center;
justify-content: center;
font-size: 2.5rem;
font-weight: 800;
margin: 0 0 0.5rem;
letter-spacing: -0.025em;
}
.rp-dashboard-title .rp-icon {
margin-right: 1rem;
}
.rp-dashboard-subtitle {
font-size: 1.25rem;
opacity: 0.9;
margin: 0;
font-weight: 400;
}
.rp-dashboard-grid {
display: grid;
grid-template-columns: 1fr;
gap: 2rem;
}
@media (min-width: 768px) {
.rp-dashboard-grid {
grid-template-columns: 1fr 1fr;
}
}
.rp-dashboard-card {
background: var(--rp-white);
border-radius: var(--rp-border-radius-lg);
box-shadow: var(--rp-shadow-lg);
overflow: hidden;
transition: var(--rp-transition);
border: 1px solid var(--rp-gray-200);
}
.rp-dashboard-card:hover {
transform: translateY(-4px);
box-shadow: var(--rp-shadow-xl);
}
.rp-full-width {
grid-column: 1 / -1;
}
.rp-card-header {
padding: 1.5rem;
background: linear-gradient(135deg, var(--rp-gray-50) 0%, var(--rp-gray-100) 100%);
border-bottom: 1px solid var(--rp-gray-200);
}
.rp-card-title {
display: flex;
align-items: center;
font-size: 1.25rem;
font-weight: 700;
color: var(--rp-gray-900);
margin: 0;
}
.rp-card-title .rp-icon {
margin-right: 0.75rem;
color: var(--rp-primary);
}
.rp-card-content {
padding: 1.5rem;
} .rp-links-grid {
display: grid;
gap: 1.5rem;
}
.rp-link-item {
border: 1px solid var(--rp-gray-200);
border-radius: var(--rp-border-radius);
padding: 1.5rem;
background: var(--rp-gray-50);
transition: var(--rp-transition);
}
.rp-link-item:hover {
border-color: var(--rp-primary);
background: var(--rp-white);
box-shadow: var(--rp-shadow);
}
.rp-link-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 1rem;
}
.rp-link-title {
font-size: 1.125rem;
font-weight: 600;
color: var(--rp-gray-900);
margin: 0;
flex: 1;
}
.rp-link-actions {
display: flex;
gap: 0.5rem;
}
.rp-link-url {
margin-bottom: 1rem;
}
.rp-link-input {
width: 100%;
padding: 0.75rem;
border: 1px solid var(--rp-gray-300);
border-radius: var(--rp-border-radius-sm);
background: var(--rp-white);
font-family: monospace;
font-size: 0.875rem;
color: var(--rp-gray-700);
}
.rp-qr-container {
text-align: center;
padding: 1rem;
background: var(--rp-white);
border-radius: var(--rp-border-radius);
border: 2px dashed var(--rp-gray-300);
margin-top: 1rem;
}
.rp-qr-code {
margin-bottom: 1rem;
}
.rp-qr-code img {
max-width: 200px;
height: auto;
border-radius: var(--rp-border-radius-sm);
} .rp-stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 1.5rem;
margin-bottom: 2rem;
}
.rp-stat-card {
background: linear-gradient(135deg, var(--rp-white) 0%, var(--rp-gray-50) 100%);
border: 1px solid var(--rp-gray-200);
border-radius: var(--rp-border-radius-lg);
padding: 1.5rem;
text-align: center;
position: relative;
overflow: hidden;
transition: var(--rp-transition);
}
.rp-stat-card:hover {
transform: translateY(-2px);
box-shadow: var(--rp-shadow-lg);
}
.rp-stat-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, var(--rp-primary), var(--rp-secondary));
}
.rp-stat-icon {
width: 48px;
height: 48px;
margin: 0 auto 1rem;
background: var(--rp-primary);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: var(--rp-white);
} .rp-stat-icon.rp-stat-clicks {
background: linear-gradient(135deg, #ffaa00 0%, #ff6600 100%) !important;
} .rp-conversion-url {
font-size: 15px !important;
color: #4b5563 !important;
line-height: 1.4 !important;
} .rp-form-section {
background: var(--rp-white);
border: 1px solid var(--rp-gray-200);
border-radius: var(--rp-border-radius-lg);
padding: 2rem;
margin-bottom: 1.5rem;
max-width: 100%;
box-sizing: border-box;
}
.rp-form-section .rp-form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1.5rem;
margin-bottom: 1.5rem;
width: 100%;
box-sizing: border-box;
}
.rp-form-section .rp-form-group {
position: relative;
width: 100%;
box-sizing: border-box;
}
.rp-form-section .rp-input {
width: 100%;
box-sizing: border-box;
max-width: 100%;
} @media (max-width: 768px) {
.rp-form-section .rp-form-row {
grid-template-columns: 1fr;
gap: 1rem;
}
}
.rp-stat-content {
position: relative;
z-index: 1;
}
.rp-stat-number {
font-size: 2.5rem;
font-weight: 800;
color: var(--rp-gray-900);
line-height: 1;
margin-bottom: 0.5rem;
}
.rp-stat-label {
font-size: 0.875rem;
font-weight: 600;
color: var(--rp-gray-600);
text-transform: uppercase;
letter-spacing: 0.05em;
margin-bottom: 0.25rem;
}
.rp-stat-sublabel {
font-size: 0.75rem;
color: var(--rp-gray-500);
} .rp-performance-section {
margin-top: 2rem;
}
.rp-section-title {
font-size: 1.25rem;
font-weight: 600;
color: var(--rp-gray-900);
margin-bottom: 1rem;
}
.rp-performance-table {
background: var(--rp-white);
border-radius: var(--rp-border-radius);
overflow: hidden;
border: 1px solid var(--rp-gray-200);
}
.rp-table-header {
display: grid;
grid-template-columns: 2fr 1fr 2fr;
background: var(--rp-gray-50);
border-bottom: 1px solid var(--rp-gray-200);
}
.rp-table-row {
display: grid;
grid-template-columns: 2fr 1fr 2fr;
border-bottom: 1px solid var(--rp-gray-100);
}
.rp-table-row:last-child {
border-bottom: none;
}
.rp-table-row:hover {
background: var(--rp-gray-50);
}
.rp-table-cell {
padding: 1rem;
display: flex;
align-items: center;
font-size: 0.875rem;
}
.rp-table-header .rp-table-cell {
font-weight: 600;
color: var(--rp-gray-700);
text-transform: uppercase;
letter-spacing: 0.05em;
}
.rp-progress-bar {
width: 100%;
height: 8px;
background: var(--rp-gray-200);
border-radius: 4px;
overflow: hidden;
}
.rp-progress-fill {
height: 100%;
background: linear-gradient(90deg, var(--rp-primary), var(--rp-secondary));
border-radius: 4px;
transition: width 0.5s ease;
} .rp-empty-state {
text-align: center;
padding: 3rem 2rem;
color: var(--rp-gray-500);
}
.rp-empty-state h4 {
font-size: 1.25rem;
font-weight: 600;
color: var(--rp-gray-700);
margin: 0 0 0.5rem;
}
.rp-empty-state p {
margin: 0;
font-size: 0.875rem;
} .rp-status-badge {
display: inline-flex;
align-items: center;
padding: 0.5rem 1rem;
border-radius: 999px;
font-size: 0.75rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.05em;
margin-bottom: 1rem;
}
.rp-status-badge.rp-pending {
background: rgba(237, 137, 54, 0.1);
color: #7b341e;
border: 1px solid rgba(237, 137, 54, 0.3);
}
.rp-status-info {
background: var(--rp-gray-50);
border-radius: var(--rp-border-radius);
padding: 1.5rem;
margin-top: 1.5rem;
}
.rp-status-info strong {
color: var(--rp-gray-900);
display: block;
margin-bottom: 0.75rem;
}
.rp-status-info ul {
margin: 0;
padding-left: 1.25rem;
color: var(--rp-gray-600);
}
.rp-status-info li {
margin-bottom: 0.5rem;
} .rp-notification {
position: fixed;
top: 2rem;
right: 2rem;
background: var(--rp-white);
color: var(--rp-gray-900);
padding: 1rem 1.5rem;
border-radius: var(--rp-border-radius);
box-shadow: var(--rp-shadow-lg);
border: 1px solid var(--rp-gray-200);
max-width: 400px;
z-index: 1000;
transform: translateX(100%);
transition: transform 0.3s ease;
}
.rp-notification-show {
transform: translateX(0);
}
.rp-notification-success {
border-left: 4px solid var(--rp-success);
}
.rp-notification-error {
border-left: 4px solid var(--rp-error);
} @media (max-width: 767px) {
.rp-dashboard-title {
font-size: 2rem;
flex-direction: column;
text-align: center;
}
.rp-dashboard-title .rp-icon {
margin-right: 0;
margin-bottom: 0.5rem;
}
.rp-link-header {
flex-direction: column;
align-items: flex-start;
gap: 1rem;
}
.rp-link-actions {
width: 100%;
justify-content: center;
}
.rp-table-header,
.rp-table-row {
grid-template-columns: 1fr;
gap: 0;
}
.rp-table-cell {
padding: 0.75rem;
}
.rp-table-header .rp-table-cell {
background: var(--rp-primary);
color: var(--rp-white);
font-weight: 700;
}
.rp-stats-grid {
grid-template-columns: 1fr;
}
.rp-form-row {
grid-template-columns: 1fr;
}
} @media print {
.rp-btn,
.rp-link-actions,
.rp-qr-container {
display: none;
}
}