2025-10-22 21:37:03 +05:30
|
|
|
@import '@fontsource/dm-sans/400.css';
|
|
|
|
|
@import '@fontsource/dm-sans/500.css';
|
|
|
|
|
@import '@fontsource/dm-sans/600.css';
|
|
|
|
|
@import '@fontsource/dm-sans/700.css';
|
|
|
|
|
@import '@fontsource/dancing-script/400.css';
|
|
|
|
|
@import '@fontsource/great-vibes/400.css';
|
|
|
|
|
@import '@fontsource/kalam/300.css';
|
|
|
|
|
@import '@fontsource/kalam/400.css';
|
|
|
|
|
@import '@fontsource/kalam/700.css';
|
|
|
|
|
@import '@fontsource/lato/400.css';
|
|
|
|
|
@import '@fontsource/lato/700.css';
|
|
|
|
|
@import '@fontsource/lato/400-italic.css';
|
|
|
|
|
@import '@fontsource/merriweather/400.css';
|
|
|
|
|
@import '@fontsource/merriweather/700.css';
|
|
|
|
|
@import '@fontsource/merriweather/400-italic.css';
|
|
|
|
|
@import '@fontsource/cedarville-cursive/400.css';
|
|
|
|
|
@import 'cropperjs/dist/cropper.css';
|
2025-10-17 11:37:32 +05:30
|
|
|
@import 'tailwindcss';
|
2025-10-12 11:55:45 +05:30
|
|
|
|
2025-10-22 21:37:03 +05:30
|
|
|
@theme {
|
|
|
|
|
--font-sans: 'DM Sans', ui-sans-serif, system-ui, sans-serif;
|
|
|
|
|
--font-dancing: 'Dancing Script', cursive;
|
|
|
|
|
--font-vibes: 'Great Vibes', cursive;
|
|
|
|
|
--font-kalam: 'Kalam', cursive;
|
|
|
|
|
--font-lato: 'Lato', sans-serif;
|
|
|
|
|
--font-merriweather: 'Merriweather', serif;
|
|
|
|
|
--font-cedarville: 'Cedarville Cursive', cursive;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@layer base {
|
|
|
|
|
body {
|
|
|
|
|
@apply antialiased;
|
|
|
|
|
font-family: var(--font-sans);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@theme {
|
|
|
|
|
--font-sans: 'DM Sans', ui-sans-serif, system-ui;
|
|
|
|
|
--font-dancing: 'Dancing Script', cursive;
|
|
|
|
|
--font-vibes: 'Great Vibes', cursive;
|
|
|
|
|
--font-kalam: 'Kalam', cursive;
|
|
|
|
|
--font-lato: 'Lato', sans-serif;
|
|
|
|
|
--font-merriweather: 'Merriweather', serif;
|
|
|
|
|
--font-cedarville: 'Cedarville Cursive', cursive;
|
|
|
|
|
}
|
|
|
|
|
|
2025-10-12 11:55:45 +05:30
|
|
|
html {
|
2025-10-17 11:37:32 +05:30
|
|
|
scroll-behavior: smooth;
|
2025-10-12 11:55:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body {
|
2025-10-17 11:37:32 +05:30
|
|
|
font-family: 'DM Sans', sans-serif;
|
|
|
|
|
background-color: #111827;
|
|
|
|
|
color: #d1d5db;
|
2025-10-12 11:55:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tool-card {
|
2025-10-17 11:37:32 +05:30
|
|
|
transition:
|
|
|
|
|
transform 0.2s ease-in-out,
|
|
|
|
|
box-shadow 0.2s ease-in-out;
|
|
|
|
|
border: 1px solid #374151;
|
2025-10-12 11:55:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tool-card:hover {
|
2025-10-17 11:37:32 +05:30
|
|
|
transform: translateY(-5px);
|
|
|
|
|
box-shadow:
|
|
|
|
|
0 10px 15px -3px rgba(0, 0, 0, 0.2),
|
|
|
|
|
0 4px 6px -2px rgba(0, 0, 0, 0.1);
|
|
|
|
|
border-color: #4f46e5;
|
2025-10-12 11:55:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn {
|
2025-10-17 11:37:32 +05:30
|
|
|
transition:
|
|
|
|
|
background-color 0.2s ease-in-out,
|
|
|
|
|
transform 0.1s ease-in-out;
|
2025-10-12 11:55:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn:active {
|
2025-10-17 11:37:32 +05:30
|
|
|
transform: scale(0.98);
|
2025-10-12 11:55:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Custom file input */
|
2025-10-17 11:37:32 +05:30
|
|
|
input[type='file']::file-selector-button {
|
|
|
|
|
@apply bg-indigo-600 text-white font-semibold py-2 px-4 rounded-lg cursor-pointer hover:bg-indigo-700 transition-colors duration-200 mr-4;
|
2025-10-12 11:55:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Custom scrollbar */
|
|
|
|
|
::-webkit-scrollbar {
|
2025-10-17 11:37:32 +05:30
|
|
|
width: 8px;
|
2025-10-12 11:55:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::-webkit-scrollbar-track {
|
2025-10-17 11:37:32 +05:30
|
|
|
background: #1f2937;
|
2025-10-12 11:55:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb {
|
2025-10-17 11:37:32 +05:30
|
|
|
background: #4f46e5;
|
|
|
|
|
border-radius: 4px;
|
2025-10-12 11:55:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
2025-10-17 11:37:32 +05:30
|
|
|
background: #4338ca;
|
|
|
|
|
/* indigo-700 */
|
2025-10-12 11:55:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Style for drag-and-drop placeholder */
|
|
|
|
|
.sortable-ghost {
|
2025-10-17 11:37:32 +05:30
|
|
|
opacity: 0.4;
|
|
|
|
|
border: 2px dashed #4f46e5;
|
2025-10-12 11:55:45 +05:30
|
|
|
}
|
|
|
|
|
|
2025-10-17 11:37:32 +05:30
|
|
|
#embed-pdf-container > div {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
2025-10-12 11:55:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#tool-interface {
|
2025-10-17 11:37:32 +05:30
|
|
|
color: #39a0ed;
|
2025-10-12 11:55:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.page-thumbnail,
|
2025-10-17 11:37:32 +05:30
|
|
|
#file-list > li {
|
|
|
|
|
cursor: grab;
|
2025-10-12 11:55:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sortable-chosen {
|
2025-10-17 11:37:32 +05:30
|
|
|
cursor: grabbing;
|
2025-10-12 11:55:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.compare-viewer-wrapper.overlay-mode {
|
2025-10-17 11:37:32 +05:30
|
|
|
position: relative;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 75vh;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
border: 2px solid #374151;
|
|
|
|
|
border-radius: 0.5rem;
|
|
|
|
|
background-color: #1f2937;
|
2025-10-12 11:55:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* This rule now ONLY applies to canvases in overlay mode */
|
|
|
|
|
.compare-viewer-wrapper.overlay-mode canvas {
|
2025-10-17 11:37:32 +05:30
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: auto;
|
2025-10-12 11:55:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.compare-viewer-wrapper.side-by-side-mode {
|
2025-10-17 11:37:32 +05:30
|
|
|
display: flex;
|
|
|
|
|
gap: 1rem;
|
|
|
|
|
width: 100%;
|
2025-10-12 11:55:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pdf-panel {
|
2025-10-17 11:37:32 +05:30
|
|
|
flex: 1;
|
|
|
|
|
min-width: 0;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
height: 75vh;
|
|
|
|
|
border: 2px solid #374151;
|
|
|
|
|
border-radius: 0.5rem;
|
|
|
|
|
background-color: #1f2937;
|
2025-10-12 11:55:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* This rule ensures canvases in side-by-side panels display at their natural rendered size. */
|
|
|
|
|
.pdf-panel canvas {
|
2025-10-17 11:37:32 +05:30
|
|
|
display: block;
|
|
|
|
|
margin: 0 auto;
|
2025-10-12 11:55:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
footer a {
|
2025-10-17 11:37:32 +05:30
|
|
|
transition: color 0.2s ease-in-out;
|
2025-10-12 11:55:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.marker {
|
2025-10-17 11:37:32 +05:30
|
|
|
position: relative;
|
|
|
|
|
display: inline-block;
|
2025-10-12 11:55:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.marker::after {
|
2025-10-17 11:37:32 +05:30
|
|
|
content: '';
|
|
|
|
|
position: absolute;
|
|
|
|
|
bottom: -5px;
|
|
|
|
|
left: 0;
|
|
|
|
|
width: 100%;
|
|
|
|
|
/* height: 30px; */
|
|
|
|
|
background-color: orange;
|
|
|
|
|
/* Yellow marker color */
|
|
|
|
|
z-index: -1;
|
|
|
|
|
transform: skew(-20deg);
|
2025-10-12 11:55:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pill {
|
2025-10-17 11:37:32 +05:30
|
|
|
background-color: #374151;
|
|
|
|
|
/* bg-gray-700 */
|
|
|
|
|
color: #d1d5db;
|
|
|
|
|
/* text-gray-300 */
|
|
|
|
|
padding: 8px 16px;
|
|
|
|
|
border-radius: 9999px;
|
|
|
|
|
/* rounded-full */
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
font-weight: 500;
|
2025-10-12 11:55:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cta-button {
|
2025-10-17 11:37:32 +05:30
|
|
|
background-color: #4f46e5;
|
|
|
|
|
/* indigo-600 */
|
|
|
|
|
color: white;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
padding: 12px 24px;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
/* rounded-lg */
|
|
|
|
|
transition: background-color 0.2s ease-in-out;
|
2025-10-12 11:55:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cta-button:hover {
|
2025-10-17 11:37:32 +05:30
|
|
|
background-color: #4338ca;
|
|
|
|
|
/* indigo-700 */
|
2025-10-12 11:55:45 +05:30
|
|
|
}
|
2025-10-12 18:23:13 +05:30
|
|
|
|
2025-10-12 11:55:45 +05:30
|
|
|
.marker-text {
|
2025-10-17 11:37:32 +05:30
|
|
|
background-color: rgba(255, 255, 0, 0.5);
|
|
|
|
|
/* Yellow marker color */
|
|
|
|
|
padding: 0 5px;
|
2025-10-12 11:55:45 +05:30
|
|
|
}
|
2025-10-12 18:23:13 +05:30
|
|
|
|
2025-10-12 11:55:45 +05:30
|
|
|
.feature-card {
|
2025-10-17 11:37:32 +05:30
|
|
|
background-color: #1f2937;
|
|
|
|
|
/* bg-gray-800 */
|
|
|
|
|
padding: 24px;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
/* rounded-lg */
|
|
|
|
|
text-align: center;
|
2025-10-12 11:55:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav-link {
|
2025-10-17 11:37:32 +05:30
|
|
|
@apply text-gray-300 hover:bg-gray-700 hover:text-white px-3 py-2 rounded-md text-sm font-medium transition-colors;
|
2025-10-12 11:55:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mobile-nav-link {
|
2025-10-17 11:37:32 +05:30
|
|
|
@apply text-gray-300 hover:bg-gray-700 hover:text-white block px-3 py-2 rounded-md text-base font-medium transition-colors;
|
2025-10-12 11:55:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.marker-slanted {
|
2025-10-17 11:37:32 +05:30
|
|
|
position: relative;
|
|
|
|
|
display: inline-block;
|
2025-10-12 11:55:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.marker-slanted::before {
|
2025-10-17 11:37:32 +05:30
|
|
|
content: '';
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
height: 6px;
|
|
|
|
|
background: linear-gradient(120deg, #6366f1, #8b5cf6);
|
|
|
|
|
z-index: -1;
|
2025-10-12 11:55:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.section-divider {
|
2025-10-17 11:37:32 +05:30
|
|
|
height: 1px;
|
|
|
|
|
background: linear-gradient(to right, transparent, #4f46e5, transparent);
|
|
|
|
|
/* Fades from transparent to indigo and back */
|
|
|
|
|
margin: 2rem auto;
|
|
|
|
|
/* my-16 */
|
|
|
|
|
max-width: 42rem;
|
|
|
|
|
/* max-w-xl */
|
|
|
|
|
opacity: 0.5;
|
2025-10-12 11:55:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-gradient {
|
2025-10-17 11:37:32 +05:30
|
|
|
display: inline-block;
|
|
|
|
|
padding: 0.75rem 2rem;
|
|
|
|
|
/* py-3 px-8 */
|
|
|
|
|
border-radius: 0.5rem;
|
|
|
|
|
/* rounded-lg */
|
|
|
|
|
background-image: linear-gradient(to bottom, #6366f1, #4f46e5);
|
|
|
|
|
/* from-indigo-500 to-indigo-600 */
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
/* text-white */
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
/* font-semibold */
|
|
|
|
|
transition-property: all;
|
|
|
|
|
transition-duration: 200ms;
|
|
|
|
|
transform: translateY(0);
|
2025-10-12 11:55:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-gradient:hover {
|
2025-10-17 11:37:32 +05:30
|
|
|
box-shadow:
|
|
|
|
|
0 10px 15px -3px rgba(79, 70, 229, 0.3),
|
|
|
|
|
0 4px 6px -4px rgba(79, 70, 229, 0.3);
|
|
|
|
|
/* hover:shadow-xl hover:shadow-indigo-500/30 */
|
|
|
|
|
transform: translateY(-0.25rem);
|
|
|
|
|
/* hover:-translate-y-1 */
|
2025-10-12 11:55:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-gradient:focus {
|
2025-10-17 11:37:32 +05:30
|
|
|
outline: 2px solid transparent;
|
|
|
|
|
outline-offset: 2px;
|
|
|
|
|
box-shadow:
|
|
|
|
|
0 0 0 2px #111827,
|
|
|
|
|
0 0 0 4px #818cf8;
|
|
|
|
|
/* focus:ring-2 focus:ring-offset-2 focus:ring-offset-gray-900 focus:ring-indigo-400 */
|
2025-10-12 11:55:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-gradient:disabled {
|
2025-10-17 11:37:32 +05:30
|
|
|
opacity: 0.5;
|
|
|
|
|
cursor: not-allowed;
|
|
|
|
|
transform: none;
|
|
|
|
|
box-shadow: none;
|
2025-10-12 11:55:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.solid-spinner {
|
2025-10-17 11:37:32 +05:30
|
|
|
width: 64px;
|
|
|
|
|
/* w-16 */
|
|
|
|
|
height: 64px;
|
|
|
|
|
/* h-16 */
|
|
|
|
|
border: 5px solid #374151;
|
|
|
|
|
/* border-gray-700 */
|
|
|
|
|
border-bottom-color: #4f46e5;
|
|
|
|
|
/* border-indigo-600 */
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
animation: spin 1s linear infinite;
|
2025-10-12 11:55:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes spin {
|
2025-10-17 11:37:32 +05:30
|
|
|
0% {
|
|
|
|
|
transform: rotate(0deg);
|
|
|
|
|
}
|
2025-10-12 18:23:13 +05:30
|
|
|
|
2025-10-17 11:37:32 +05:30
|
|
|
100% {
|
|
|
|
|
transform: rotate(360deg);
|
|
|
|
|
}
|
2025-10-12 11:55:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#signature-ghost {
|
2025-10-17 11:37:32 +05:30
|
|
|
position: absolute;
|
|
|
|
|
z-index: 100;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
/* Allows clicks to pass through to the canvas */
|
|
|
|
|
opacity: 0.6;
|
|
|
|
|
background-size: contain;
|
|
|
|
|
background-repeat: no-repeat;
|
2025-10-12 11:55:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Highlight for selected signature in the saved list */
|
|
|
|
|
.saved-signature.selected {
|
2025-10-17 11:37:32 +05:30
|
|
|
border-color: #4f46e5;
|
|
|
|
|
/* indigo-600 */
|
|
|
|
|
box-shadow: 0 0 10px rgba(79, 70, 229, 0.5);
|
2025-10-12 11:55:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Cursor change when hovering over a placed signature */
|
|
|
|
|
#canvas-sign.movable {
|
2025-10-17 11:37:32 +05:30
|
|
|
cursor: move;
|
2025-10-12 11:55:45 +05:30
|
|
|
}
|
|
|
|
|
|
2025-10-12 18:23:13 +05:30
|
|
|
#canvas-sign.resize-ns {
|
2025-10-17 11:37:32 +05:30
|
|
|
cursor: ns-resize;
|
2025-10-12 18:23:13 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#canvas-sign.resize-ew {
|
2025-10-17 11:37:32 +05:30
|
|
|
cursor: ew-resize;
|
2025-10-12 18:23:13 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#canvas-sign.resize-nesw {
|
2025-10-17 11:37:32 +05:30
|
|
|
cursor: nesw-resize;
|
2025-10-12 18:23:13 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#canvas-sign.resize-nwse {
|
2025-10-17 11:37:32 +05:30
|
|
|
cursor: nwse-resize;
|
2025-10-12 18:23:13 +05:30
|
|
|
}
|
2025-10-12 11:55:45 +05:30
|
|
|
|
|
|
|
|
.faq-item.open .faq-question {
|
2025-10-17 11:37:32 +05:30
|
|
|
color: #818cf8;
|
|
|
|
|
/* indigo-400 */
|
2025-10-12 11:55:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.faq-item.open .faq-icon {
|
2025-10-17 11:37:32 +05:30
|
|
|
transform: rotate(180deg);
|
2025-10-12 11:55:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Testimonial Card Styles */
|
|
|
|
|
.testimonial-card {
|
2025-10-17 11:37:32 +05:30
|
|
|
background-color: #1f2937;
|
|
|
|
|
/* bg-gray-800 */
|
|
|
|
|
padding: 24px;
|
|
|
|
|
border-radius: 0.75rem;
|
|
|
|
|
/* rounded-xl */
|
|
|
|
|
border: 1px solid #374151;
|
|
|
|
|
/* border-gray-700 */
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
2025-10-12 11:55:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pill {
|
2025-10-17 11:37:32 +05:30
|
|
|
background-color: #374151;
|
|
|
|
|
/* bg-gray-700 */
|
|
|
|
|
color: #d1d5db;
|
|
|
|
|
/* text-gray-300 */
|
|
|
|
|
padding: 8px 16px;
|
|
|
|
|
border-radius: 9999px;
|
|
|
|
|
/* rounded-full */
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
font-weight: 500;
|
2025-10-12 11:55:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pill {
|
2025-10-17 11:37:32 +05:30
|
|
|
background-color: #374151;
|
|
|
|
|
/* bg-gray-700 */
|
|
|
|
|
color: #d1d5db;
|
|
|
|
|
/* text-gray-300 */
|
|
|
|
|
/* Smaller padding and font size by default for mobile */
|
|
|
|
|
padding: 6px 12px;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
border-radius: 9999px;
|
|
|
|
|
/* rounded-full */
|
|
|
|
|
font-weight: 500;
|
2025-10-12 11:55:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* On small screens (640px) and up, revert to the larger size */
|
|
|
|
|
@media (min-width: 640px) {
|
2025-10-17 11:37:32 +05:30
|
|
|
.pill {
|
|
|
|
|
padding: 8px 16px;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
}
|
2025-10-12 11:55:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Ensure form-field-group contents don't overflow on small screens */
|
|
|
|
|
.form-field-group .capitalize {
|
2025-10-17 11:37:32 +05:30
|
|
|
word-break: break-all;
|
2025-10-12 11:55:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 1023px) {
|
2025-10-17 11:37:32 +05:30
|
|
|
#form-fields-container {
|
|
|
|
|
overflow-x: auto;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
2025-10-12 18:23:13 +05:30
|
|
|
|
2025-10-17 11:37:32 +05:30
|
|
|
.form-field-group {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
width: 90%;
|
|
|
|
|
/* Adjust as needed */
|
|
|
|
|
margin-right: 1rem;
|
|
|
|
|
}
|
2025-10-12 11:55:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#page-merge-preview {
|
2025-10-17 11:37:32 +05:30
|
|
|
display: grid;
|
|
|
|
|
gap: 1rem;
|
|
|
|
|
padding: 1rem;
|
|
|
|
|
grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
|
2025-10-12 18:23:13 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.legal-content h2 {
|
2025-10-17 11:37:32 +05:30
|
|
|
font-size: 1.5rem;
|
|
|
|
|
line-height: 2rem;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
color: white;
|
|
|
|
|
margin-top: 2rem;
|
|
|
|
|
margin-bottom: 1rem;
|
2025-10-12 18:23:13 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.legal-content h3 {
|
2025-10-17 11:37:32 +05:30
|
|
|
font-size: 1.25rem;
|
|
|
|
|
line-height: 1.75rem;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
color: rgb(129 140 248);
|
|
|
|
|
margin-top: 1.5rem;
|
|
|
|
|
margin-bottom: 0.75rem;
|
2025-10-12 18:23:13 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.legal-content p {
|
2025-10-17 11:37:32 +05:30
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
line-height: 1.625;
|
|
|
|
|
color: rgb(156 163 175);
|
2025-10-12 18:23:13 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.legal-content ul {
|
2025-10-17 11:37:32 +05:30
|
|
|
list-style-type: disc;
|
|
|
|
|
list-style-position: inside;
|
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
padding-left: 1rem;
|
|
|
|
|
color: rgb(156 163 175);
|
2025-10-12 18:23:13 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.legal-content a {
|
2025-10-17 11:37:32 +05:30
|
|
|
color: rgb(129 140 248);
|
|
|
|
|
text-decoration: underline;
|
2025-10-12 18:23:13 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.legal-content a:hover {
|
2025-10-17 11:37:32 +05:30
|
|
|
color: rgb(165 180 252);
|
2025-10-12 18:23:13 +05:30
|
|
|
}
|
|
|
|
|
|
2025-10-17 11:37:32 +05:30
|
|
|
details > summary {
|
|
|
|
|
list-style: none;
|
2025-10-12 18:23:13 +05:30
|
|
|
}
|
|
|
|
|
|
2025-10-17 11:37:32 +05:30
|
|
|
details > summary::-webkit-details-marker {
|
|
|
|
|
display: none;
|
2025-10-12 18:23:13 +05:30
|
|
|
}
|
|
|
|
|
|
2025-10-17 11:37:32 +05:30
|
|
|
details > summary .icon {
|
|
|
|
|
transition: transform 0.2s ease-in-out;
|
2025-10-12 18:23:13 +05:30
|
|
|
}
|
|
|
|
|
|
2025-10-17 11:37:32 +05:30
|
|
|
details[open] > summary .icon {
|
|
|
|
|
transform: rotate(45deg);
|
|
|
|
|
}
|