cookie added, optimisation
This commit is contained in:
307
Profice WebSite/style/cookie-consent.css
Normal file
307
Profice WebSite/style/cookie-consent.css
Normal file
@@ -0,0 +1,307 @@
|
||||
/* Cookie Consent System - Matches Profice Design System */
|
||||
|
||||
/* Cookie Banner */
|
||||
.cookie-banner {
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background: var(--primary-light);
|
||||
border-top: 1px solid var(--primary-mid);
|
||||
padding: 20px 40px;
|
||||
z-index: 10000;
|
||||
box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
|
||||
transform: translateY(100%);
|
||||
transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
||||
}
|
||||
|
||||
.cookie-banner.show {
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
.cookie-banner-content {
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 30px;
|
||||
}
|
||||
|
||||
.cookie-text {
|
||||
flex: 1;
|
||||
color: var(--primary-dark);
|
||||
font-size: 14px;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.cookie-text h3 {
|
||||
margin: 0 0 8px 0;
|
||||
font-size: 16px;
|
||||
font-weight: 600;
|
||||
color: var(--primary-dark);
|
||||
}
|
||||
|
||||
.cookie-text p {
|
||||
margin: 0;
|
||||
opacity: 0.8;
|
||||
}
|
||||
|
||||
.cookie-text a {
|
||||
color: var(--accent-teal);
|
||||
text-decoration: none;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.cookie-text a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.cookie-buttons {
|
||||
display: flex;
|
||||
gap: 12px;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.cookie-btn {
|
||||
padding: 10px 20px;
|
||||
border: none;
|
||||
border-radius: 8px;
|
||||
font-size: 14px;
|
||||
font-weight: 500;
|
||||
cursor: pointer;
|
||||
transition: all 0.3s ease;
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.cookie-btn-primary {
|
||||
background: var(--primary-dark);
|
||||
color: var(--primary-light);
|
||||
}
|
||||
|
||||
.cookie-btn-primary:hover {
|
||||
background: var(--primary-mid);
|
||||
transform: translateY(-1px);
|
||||
}
|
||||
|
||||
.cookie-btn-secondary {
|
||||
background: transparent;
|
||||
color: var(--primary-dark);
|
||||
border: 2px solid var(--primary-mid);
|
||||
}
|
||||
|
||||
.cookie-btn-secondary:hover {
|
||||
background: var(--primary-mid);
|
||||
color: var(--primary-light);
|
||||
}
|
||||
|
||||
.cookie-btn-settings {
|
||||
background: transparent;
|
||||
color: var(--accent-teal);
|
||||
border: none;
|
||||
text-decoration: underline;
|
||||
font-size: 14px;
|
||||
padding: 5px 0;
|
||||
}
|
||||
|
||||
.cookie-btn-settings:hover {
|
||||
color: var(--primary-dark);
|
||||
}
|
||||
|
||||
/* Cookie Settings Modal */
|
||||
.cookie-modal {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
z-index: 10001;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.cookie-modal.show {
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.cookie-modal-content {
|
||||
background: var(--primary-light);
|
||||
border-radius: 12px;
|
||||
padding: 30px;
|
||||
max-width: 600px;
|
||||
width: 90%;
|
||||
max-height: 80vh;
|
||||
overflow-y: auto;
|
||||
transform: scale(0.9);
|
||||
transition: transform 0.3s ease;
|
||||
}
|
||||
|
||||
.cookie-modal.show .cookie-modal-content {
|
||||
transform: scale(1);
|
||||
}
|
||||
|
||||
.cookie-modal-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-bottom: 20px;
|
||||
padding-bottom: 15px;
|
||||
border-bottom: 1px solid var(--primary-mid);
|
||||
}
|
||||
|
||||
.cookie-modal-title {
|
||||
font-size: 20px;
|
||||
font-weight: 600;
|
||||
color: var(--primary-dark);
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.cookie-modal-close {
|
||||
background: none;
|
||||
border: none;
|
||||
font-size: 24px;
|
||||
color: var(--primary-mid);
|
||||
cursor: pointer;
|
||||
padding: 0;
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
border-radius: 50%;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.cookie-modal-close:hover {
|
||||
background: var(--primary-mid);
|
||||
color: var(--primary-light);
|
||||
}
|
||||
|
||||
.cookie-option {
|
||||
margin-bottom: 20px;
|
||||
padding: 15px;
|
||||
border: 1px solid var(--primary-mid);
|
||||
border-radius: 8px;
|
||||
background: rgba(255, 255, 255, 0.5);
|
||||
}
|
||||
|
||||
.cookie-option-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.cookie-option-title {
|
||||
font-weight: 600;
|
||||
color: var(--primary-dark);
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.cookie-option-description {
|
||||
color: var(--primary-mid);
|
||||
font-size: 14px;
|
||||
line-height: 1.4;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.cookie-toggle {
|
||||
position: relative;
|
||||
width: 50px;
|
||||
height: 26px;
|
||||
background: var(--primary-mid);
|
||||
border-radius: 13px;
|
||||
cursor: pointer;
|
||||
transition: background 0.3s ease;
|
||||
}
|
||||
|
||||
.cookie-toggle.active {
|
||||
background: var(--accent-teal);
|
||||
}
|
||||
|
||||
.cookie-toggle-slider {
|
||||
position: absolute;
|
||||
top: 3px;
|
||||
left: 3px;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
background: white;
|
||||
border-radius: 50%;
|
||||
transition: transform 0.3s ease;
|
||||
}
|
||||
|
||||
.cookie-toggle.active .cookie-toggle-slider {
|
||||
transform: translateX(24px);
|
||||
}
|
||||
|
||||
.cookie-toggle.disabled {
|
||||
opacity: 0.5;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
.cookie-modal-footer {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
gap: 12px;
|
||||
margin-top: 25px;
|
||||
padding-top: 20px;
|
||||
border-top: 1px solid var(--primary-mid);
|
||||
}
|
||||
|
||||
/* Responsive Design */
|
||||
@media (max-width: 768px) {
|
||||
.cookie-banner {
|
||||
padding: 15px 20px;
|
||||
}
|
||||
|
||||
.cookie-banner-content {
|
||||
flex-direction: column;
|
||||
gap: 20px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.cookie-buttons {
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.cookie-btn {
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.cookie-modal-content {
|
||||
padding: 20px;
|
||||
margin: 20px;
|
||||
}
|
||||
|
||||
.cookie-modal-footer {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.cookie-btn {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 480px) {
|
||||
.cookie-text h3 {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.cookie-text p {
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.cookie-modal-content {
|
||||
padding: 15px;
|
||||
}
|
||||
}
|
||||
98
Profice WebSite/style/cursor.css
Normal file
98
Profice WebSite/style/cursor.css
Normal file
@@ -0,0 +1,98 @@
|
||||
/* cursor.css */
|
||||
|
||||
/* Default: System cursor (not custom) */
|
||||
body,
|
||||
html,
|
||||
a,
|
||||
button,
|
||||
input,
|
||||
textarea,
|
||||
select,
|
||||
.menu-toggle,
|
||||
label {
|
||||
cursor: auto !important;
|
||||
}
|
||||
|
||||
/* Custom cursor only when enabled */
|
||||
body:not(.system-cursor),
|
||||
body:not(.system-cursor) a,
|
||||
body:not(.system-cursor) button,
|
||||
body:not(.system-cursor) input,
|
||||
body:not(.system-cursor) textarea,
|
||||
body:not(.system-cursor) select,
|
||||
body:not(.system-cursor) .menu-toggle,
|
||||
body:not(.system-cursor) label {
|
||||
cursor: none !important;
|
||||
}
|
||||
|
||||
#venom-cursor {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
pointer-events: none;
|
||||
z-index: 9999;
|
||||
mix-blend-mode: normal;
|
||||
display: none; /* Hidden by default */
|
||||
}
|
||||
|
||||
/* Show custom cursor only when not system cursor */
|
||||
body:not(.system-cursor) #venom-cursor {
|
||||
display: block;
|
||||
}
|
||||
|
||||
@media (pointer: coarse) {
|
||||
body, html, a, button, input, textarea, select {
|
||||
cursor: auto !important;
|
||||
}
|
||||
|
||||
#venom-cursor {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
body.system-cursor,
|
||||
body.system-cursor * {
|
||||
cursor: auto !important;
|
||||
}
|
||||
|
||||
body.system-cursor #venom-cursor {
|
||||
display: none !important;
|
||||
opacity: 0;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
#cursorToggle {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
background: transparent;
|
||||
border: 2px solid var(--primary-dark);
|
||||
color: var(--primary-dark);
|
||||
width: 45px;
|
||||
height: 45px;
|
||||
border-radius: 12px;
|
||||
cursor: auto; /* Use system cursor for toggle button */
|
||||
transition: all 0.3s ease;
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
#cursorToggle:hover {
|
||||
background: var(--primary-dark);
|
||||
color: var(--primary-light);
|
||||
}
|
||||
|
||||
body:not(.system-cursor) #cursorToggle {
|
||||
cursor: none; /* Use custom cursor when custom is enabled */
|
||||
}
|
||||
|
||||
.top-banner.dark-theme #cursorToggle {
|
||||
border-color: var(--primary-light);
|
||||
color: var(--primary-light);
|
||||
}
|
||||
|
||||
.top-banner.dark-theme #cursorToggle:hover {
|
||||
background: var(--primary-light);
|
||||
color: var(--primary-dark);
|
||||
}
|
||||
1042
Profice WebSite/style/design.css
Normal file
1042
Profice WebSite/style/design.css
Normal file
File diff suppressed because it is too large
Load Diff
151
Profice WebSite/style/details.css
Normal file
151
Profice WebSite/style/details.css
Normal file
@@ -0,0 +1,151 @@
|
||||
/* Details Page Styles */
|
||||
|
||||
.service-header {
|
||||
text-align: center;
|
||||
margin-bottom: 40px;
|
||||
padding-bottom: 30px;
|
||||
border-bottom: 2px solid var(--accent-teal);
|
||||
}
|
||||
|
||||
.service-icon-large {
|
||||
font-size: 64px;
|
||||
margin-bottom: 20px;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.service-title-large {
|
||||
font-size: 36px;
|
||||
color: var(--primary-dark);
|
||||
margin-bottom: 15px;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.service-description-large {
|
||||
font-size: 18px;
|
||||
color: var(--primary-mid);
|
||||
line-height: 1.6;
|
||||
max-width: 600px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.service-content {
|
||||
margin-top: 40px;
|
||||
}
|
||||
|
||||
.service-section {
|
||||
margin-bottom: 40px;
|
||||
padding: 30px;
|
||||
background: var(--primary-light);
|
||||
border-radius: 16px;
|
||||
box-shadow: 0 4px 20px rgba(79, 71, 71, 0.1);
|
||||
}
|
||||
|
||||
.section-title {
|
||||
font-size: 24px;
|
||||
color: var(--primary-dark);
|
||||
margin-bottom: 20px;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.section-text {
|
||||
font-size: 16px;
|
||||
line-height: 1.6;
|
||||
color: var(--primary-mid);
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.feature-list,
|
||||
.benefit-list {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.feature-list li,
|
||||
.benefit-list li {
|
||||
padding: 12px 0;
|
||||
border-bottom: 1px solid rgba(119, 119, 100, 0.1);
|
||||
color: var(--primary-dark);
|
||||
font-size: 16px;
|
||||
position: relative;
|
||||
padding-left: 30px;
|
||||
}
|
||||
|
||||
.feature-list li:before,
|
||||
.benefit-list li:before {
|
||||
content: "✓";
|
||||
position: absolute;
|
||||
left: 0;
|
||||
color: var(--accent-teal);
|
||||
font-weight: bold;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
.feature-list li:last-child,
|
||||
.benefit-list li:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.cta-buttons {
|
||||
display: flex;
|
||||
gap: 20px;
|
||||
justify-content: center;
|
||||
margin-top: 30px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.back-button-container {
|
||||
text-align: center;
|
||||
margin-top: 40px;
|
||||
padding-top: 30px;
|
||||
border-top: 1px solid rgba(119, 119, 100, 0.2);
|
||||
}
|
||||
|
||||
.error-message {
|
||||
text-align: center;
|
||||
padding: 40px;
|
||||
}
|
||||
|
||||
.error-message h2 {
|
||||
color: var(--primary-dark);
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.error-message p {
|
||||
color: var(--primary-mid);
|
||||
margin-bottom: 25px;
|
||||
}
|
||||
|
||||
/* Responsive Design */
|
||||
@media (max-width: 768px) {
|
||||
.service-icon-large {
|
||||
font-size: 48px;
|
||||
}
|
||||
|
||||
.service-title-large {
|
||||
font-size: 28px;
|
||||
}
|
||||
|
||||
.service-description-large {
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.service-section {
|
||||
padding: 20px;
|
||||
margin-bottom: 25px;
|
||||
}
|
||||
|
||||
.section-title {
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.cta-buttons {
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.cta-btn {
|
||||
width: 100%;
|
||||
max-width: 300px;
|
||||
}
|
||||
}
|
||||
408
Profice WebSite/style/lead-details.css
Normal file
408
Profice WebSite/style/lead-details.css
Normal file
@@ -0,0 +1,408 @@
|
||||
/* Lead Details Page Styles */
|
||||
|
||||
.lead-details-container {
|
||||
max-width: 900px;
|
||||
margin: 0 auto;
|
||||
padding: 120px 20px 20px 20px;
|
||||
}
|
||||
|
||||
.lead-header {
|
||||
text-align: center;
|
||||
margin-bottom: 50px;
|
||||
padding-bottom: 30px;
|
||||
border-bottom: 3px solid var(--accent-teal);
|
||||
}
|
||||
|
||||
.lead-icon {
|
||||
font-size: 72px;
|
||||
margin-bottom: 20px;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.lead-title {
|
||||
font-size: 42px;
|
||||
color: var(--primary-dark);
|
||||
margin-bottom: 15px;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.lead-subtitle {
|
||||
font-size: 20px;
|
||||
color: var(--primary-mid);
|
||||
line-height: 1.6;
|
||||
max-width: 600px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.lead-details-card {
|
||||
background: white;
|
||||
border-radius: 20px;
|
||||
box-shadow: 0 8px 30px rgba(79, 71, 71, 0.1);
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.detail-section {
|
||||
padding: 40px;
|
||||
border-bottom: 1px solid rgba(119, 119, 100, 0.1);
|
||||
}
|
||||
|
||||
.detail-section:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.section-title {
|
||||
font-size: 24px;
|
||||
color: var(--primary-dark);
|
||||
margin-bottom: 20px;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
/* Status Styles */
|
||||
.status-container {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 20px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.status-badge {
|
||||
padding: 8px 16px;
|
||||
border-radius: 20px;
|
||||
font-size: 14px;
|
||||
font-weight: 500;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.status-new {
|
||||
background: #e3f2fd;
|
||||
color: #1976d2;
|
||||
}
|
||||
|
||||
.status-in-progress {
|
||||
background: #fff3e0;
|
||||
color: #f57c00;
|
||||
}
|
||||
|
||||
.status-completed {
|
||||
background: #e8f5e8;
|
||||
color: #2e7d32;
|
||||
}
|
||||
|
||||
.status-cancelled {
|
||||
background: #ffebee;
|
||||
color: #c62828;
|
||||
}
|
||||
|
||||
.status-info {
|
||||
color: var(--primary-mid);
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
/* Info Grid */
|
||||
.info-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
||||
gap: 25px;
|
||||
}
|
||||
|
||||
.info-item {
|
||||
background: var(--primary-light);
|
||||
padding: 20px;
|
||||
border-radius: 12px;
|
||||
border-left: 4px solid var(--accent-teal);
|
||||
}
|
||||
|
||||
.info-label {
|
||||
font-size: 14px;
|
||||
color: var(--primary-mid);
|
||||
margin-bottom: 8px;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.info-value {
|
||||
font-size: 18px;
|
||||
color: var(--primary-dark);
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
/* Service Info */
|
||||
.service-info {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 20px;
|
||||
background: var(--primary-light);
|
||||
padding: 30px;
|
||||
border-radius: 16px;
|
||||
}
|
||||
|
||||
.service-icon {
|
||||
font-size: 48px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.service-details {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.service-title {
|
||||
font-size: 24px;
|
||||
color: var(--accent-teal);
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.service-description {
|
||||
color: var(--primary-mid);
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
/* Description Box */
|
||||
.description-box {
|
||||
background: var(--primary-light);
|
||||
padding: 30px;
|
||||
border-radius: 16px;
|
||||
border-left: 4px solid var(--accent-teal);
|
||||
}
|
||||
|
||||
.description-text {
|
||||
color: var(--primary-dark);
|
||||
line-height: 1.6;
|
||||
font-size: 16px;
|
||||
white-space: pre-wrap;
|
||||
}
|
||||
|
||||
/* Timeline */
|
||||
.timeline {
|
||||
position: relative;
|
||||
padding-left: 30px;
|
||||
}
|
||||
|
||||
.timeline::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 15px;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
width: 2px;
|
||||
background: rgba(119, 119, 100, 0.2);
|
||||
}
|
||||
|
||||
.timeline-item {
|
||||
position: relative;
|
||||
margin-bottom: 30px;
|
||||
padding-left: 30px;
|
||||
}
|
||||
|
||||
.timeline-item:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.timeline-dot {
|
||||
position: absolute;
|
||||
left: -22px;
|
||||
top: 5px;
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
border-radius: 50%;
|
||||
background: rgba(119, 119, 100, 0.3);
|
||||
border: 2px solid white;
|
||||
}
|
||||
|
||||
.timeline-item.active .timeline-dot {
|
||||
background: var(--accent-teal);
|
||||
box-shadow: 0 0 0 4px rgba(38, 166, 154, 0.2);
|
||||
}
|
||||
|
||||
.timeline-content h4 {
|
||||
color: var(--primary-dark);
|
||||
margin-bottom: 5px;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
.timeline-content p {
|
||||
color: var(--primary-mid);
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
/* Action Buttons */
|
||||
.action-buttons {
|
||||
display: flex;
|
||||
gap: 15px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.action-btn {
|
||||
padding: 12px 24px;
|
||||
border: none;
|
||||
border-radius: 8px;
|
||||
font-size: 14px;
|
||||
font-weight: 500;
|
||||
cursor: pointer;
|
||||
transition: all 0.3s ease;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.action-btn.primary {
|
||||
background: var(--accent-teal);
|
||||
color: white;
|
||||
}
|
||||
|
||||
.action-btn.primary:hover {
|
||||
background: #1e8e82;
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
.action-btn.secondary {
|
||||
background: var(--primary-light);
|
||||
color: var(--primary-dark);
|
||||
border: 1px solid rgba(119, 119, 100, 0.2);
|
||||
}
|
||||
|
||||
.action-btn.secondary:hover {
|
||||
background: var(--primary-mid);
|
||||
color: white;
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
/* Navigation Buttons */
|
||||
.navigation-buttons {
|
||||
display: flex;
|
||||
gap: 20px;
|
||||
justify-content: center;
|
||||
margin-top: 40px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.cta-btn {
|
||||
padding: 16px 32px;
|
||||
border-radius: 30px;
|
||||
font-size: 18px;
|
||||
font-weight: 600;
|
||||
text-decoration: none;
|
||||
transition: all 0.3s ease;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.cta-btn.primary {
|
||||
background: var(--accent-teal);
|
||||
color: white;
|
||||
border: 2px solid var(--accent-teal);
|
||||
}
|
||||
|
||||
.cta-btn.primary:hover {
|
||||
background: white;
|
||||
color: var(--accent-teal);
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 8px 25px rgba(38, 166, 154, 0.3);
|
||||
}
|
||||
|
||||
.cta-btn.secondary {
|
||||
background: transparent;
|
||||
color: var(--primary-dark);
|
||||
border: 2px solid var(--primary-dark);
|
||||
}
|
||||
|
||||
.cta-btn.secondary:hover {
|
||||
background: var(--primary-dark);
|
||||
color: white;
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
/* Error Message */
|
||||
.error-message {
|
||||
text-align: center;
|
||||
padding: 60px 20px;
|
||||
background: white;
|
||||
border-radius: 20px;
|
||||
box-shadow: 0 8px 30px rgba(79, 71, 71, 0.1);
|
||||
}
|
||||
|
||||
.error-message h2 {
|
||||
color: var(--primary-dark);
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.error-message p {
|
||||
color: var(--primary-mid);
|
||||
margin-bottom: 25px;
|
||||
}
|
||||
|
||||
/* Responsive Design */
|
||||
@media (max-width: 768px) {
|
||||
.lead-details-container {
|
||||
padding: 100px 15px 20px 15px;
|
||||
}
|
||||
|
||||
.lead-icon {
|
||||
font-size: 56px;
|
||||
}
|
||||
|
||||
.lead-title {
|
||||
font-size: 32px;
|
||||
}
|
||||
|
||||
.lead-subtitle {
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
.detail-section {
|
||||
padding: 30px 20px;
|
||||
}
|
||||
|
||||
.section-title {
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.info-grid {
|
||||
grid-template-columns: 1fr;
|
||||
gap: 20px;
|
||||
}
|
||||
|
||||
.service-info {
|
||||
flex-direction: column;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.service-icon {
|
||||
font-size: 64px;
|
||||
}
|
||||
|
||||
.status-container {
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.action-buttons,
|
||||
.navigation-buttons {
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.action-btn,
|
||||
.cta-btn {
|
||||
width: 100%;
|
||||
max-width: 300px;
|
||||
}
|
||||
}
|
||||
|
||||
/* Print Styles */
|
||||
@media print {
|
||||
.top-banner,
|
||||
.slide-menu,
|
||||
.overlay,
|
||||
.navigation-buttons,
|
||||
.action-buttons {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.lead-details-container {
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.lead-details-card {
|
||||
box-shadow: none;
|
||||
border: 1px solid #ddd;
|
||||
}
|
||||
}
|
||||
219
Profice WebSite/style/leads.css
Normal file
219
Profice WebSite/style/leads.css
Normal file
@@ -0,0 +1,219 @@
|
||||
/* Leads Dashboard Styles */
|
||||
|
||||
.leads-content {
|
||||
max-width: 900px;
|
||||
}
|
||||
|
||||
.dashboard-container {
|
||||
background: white;
|
||||
padding: 40px;
|
||||
border-radius: 24px;
|
||||
box-shadow: 0 15px 50px rgba(79, 71, 71, 0.1);
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.dashboard-title {
|
||||
color: var(--primary-dark);
|
||||
font-size: 28px;
|
||||
margin-bottom: 8px;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.dashboard-subtitle {
|
||||
color: var(--primary-mid);
|
||||
font-size: 15px;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
/* Leads Table */
|
||||
.leads-table-wrapper {
|
||||
overflow-x: auto;
|
||||
border-radius: 16px;
|
||||
border: 1px solid rgba(119, 119, 100, 0.15);
|
||||
}
|
||||
|
||||
.leads-table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
min-width: 500px;
|
||||
}
|
||||
|
||||
.leads-table thead {
|
||||
background: var(--primary-light);
|
||||
}
|
||||
|
||||
.leads-table th {
|
||||
padding: 16px 20px;
|
||||
text-align: left;
|
||||
font-weight: 600;
|
||||
color: var(--primary-dark);
|
||||
font-size: 14px;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.5px;
|
||||
}
|
||||
|
||||
.leads-table td {
|
||||
padding: 18px 20px;
|
||||
border-top: 1px solid rgba(119, 119, 100, 0.1);
|
||||
color: var(--primary-dark);
|
||||
font-size: 15px;
|
||||
}
|
||||
|
||||
.leads-table tbody tr {
|
||||
transition: background 0.2s ease;
|
||||
}
|
||||
|
||||
.leads-table tbody tr:hover {
|
||||
background: rgba(235, 235, 222, 0.5);
|
||||
}
|
||||
|
||||
/* Status Badges */
|
||||
.status-badge {
|
||||
display: inline-block;
|
||||
padding: 6px 14px;
|
||||
border-radius: 20px;
|
||||
font-size: 13px;
|
||||
font-weight: 600;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.3px;
|
||||
}
|
||||
|
||||
.status-badge.completed {
|
||||
background: rgba(102, 187, 106, 0.15);
|
||||
color: var(--accent-green);
|
||||
}
|
||||
|
||||
.status-badge.in-progress {
|
||||
background: rgba(245, 124, 0, 0.15);
|
||||
color: var(--accent-orange);
|
||||
}
|
||||
|
||||
.status-badge.open {
|
||||
background: rgba(119, 119, 100, 0.15);
|
||||
color: var(--primary-mid);
|
||||
}
|
||||
|
||||
/* Action Button */
|
||||
.action-btn {
|
||||
padding: 8px 16px;
|
||||
background: transparent;
|
||||
border: 2px solid var(--accent-teal);
|
||||
color: var(--accent-teal);
|
||||
border-radius: 20px;
|
||||
font-size: 13px;
|
||||
font-weight: 600;
|
||||
cursor: pointer;
|
||||
transition: all 0.3s ease;
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.action-btn:hover {
|
||||
background: var(--accent-teal);
|
||||
color: white;
|
||||
}
|
||||
|
||||
/* Offers Section */
|
||||
.offers-section {
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
.offers-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
||||
gap: 24px;
|
||||
}
|
||||
|
||||
.offer-card {
|
||||
background: var(--primary-light);
|
||||
border-radius: 20px;
|
||||
padding: 30px;
|
||||
text-align: center;
|
||||
transition: all 0.3s ease;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.offer-card:hover {
|
||||
transform: translateY(-5px);
|
||||
box-shadow: 0 15px 40px rgba(79, 71, 71, 0.15);
|
||||
background: white;
|
||||
}
|
||||
|
||||
.offer-icon {
|
||||
font-size: 40px;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.offer-title {
|
||||
color: var(--primary-dark);
|
||||
font-size: 20px;
|
||||
font-weight: 600;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.offer-description {
|
||||
color: var(--primary-mid);
|
||||
font-size: 14px;
|
||||
line-height: 1.6;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.offer-btn {
|
||||
display: inline-block;
|
||||
padding: 10px 24px;
|
||||
background: var(--accent-teal);
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
border-radius: 25px;
|
||||
font-size: 14px;
|
||||
font-weight: 600;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.offer-btn:hover {
|
||||
background: #1e8e82;
|
||||
box-shadow: 0 5px 20px rgba(38, 166, 154, 0.3);
|
||||
}
|
||||
|
||||
/* Active menu link */
|
||||
.slide-menu a.active {
|
||||
background: var(--primary-light);
|
||||
border-left-color: var(--accent-teal);
|
||||
color: var(--accent-teal);
|
||||
}
|
||||
|
||||
/* Empty state */
|
||||
.empty-state {
|
||||
text-align: center;
|
||||
padding: 40px;
|
||||
color: var(--primary-mid);
|
||||
}
|
||||
|
||||
.empty-state p {
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
/* Responsive */
|
||||
@media (max-width: 600px) {
|
||||
.dashboard-container {
|
||||
padding: 25px;
|
||||
}
|
||||
|
||||
.dashboard-title {
|
||||
font-size: 22px;
|
||||
}
|
||||
|
||||
.leads-table th,
|
||||
.leads-table td {
|
||||
padding: 12px 14px;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.offer-card {
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.offers-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
}
|
||||
547
Profice WebSite/style/login.css
Normal file
547
Profice WebSite/style/login.css
Normal file
@@ -0,0 +1,547 @@
|
||||
/* Login Page Styles */
|
||||
|
||||
.login-content {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
min-height: 100vh;
|
||||
padding: 120px 20px 20px 20px;
|
||||
background: linear-gradient(135deg, var(--primary-light) 0%, white 100%);
|
||||
}
|
||||
|
||||
.login-container {
|
||||
width: 100%;
|
||||
max-width: 450px;
|
||||
background: white;
|
||||
border-radius: 24px;
|
||||
box-shadow: 0 20px 60px rgba(79, 71, 71, 0.15);
|
||||
padding: 50px 40px;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.login-container::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
height: 4px;
|
||||
background: linear-gradient(90deg, var(--accent-teal), var(--accent-green));
|
||||
}
|
||||
|
||||
.login-header {
|
||||
text-align: center;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
|
||||
.login-icon {
|
||||
font-size: 64px;
|
||||
margin-bottom: 20px;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.login-title {
|
||||
font-size: 32px;
|
||||
color: var(--primary-dark);
|
||||
margin-bottom: 10px;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.login-subtitle {
|
||||
color: var(--primary-mid);
|
||||
font-size: 16px;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.login-form {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.login-form .form-group {
|
||||
position: relative;
|
||||
margin-bottom: 25px;
|
||||
}
|
||||
|
||||
.login-form .form-group label {
|
||||
display: block;
|
||||
margin-bottom: 8px;
|
||||
color: var(--primary-dark);
|
||||
font-weight: 500;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.login-form .form-group input {
|
||||
width: 100%;
|
||||
padding: 14px 45px 14px 18px;
|
||||
border: 2px solid rgba(119, 119, 100, 0.2);
|
||||
border-radius: 12px;
|
||||
font-size: 16px;
|
||||
transition: all 0.3s ease;
|
||||
background: var(--primary-light);
|
||||
color: var(--primary-dark);
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.login-form .form-group input:focus {
|
||||
border-color: var(--accent-teal);
|
||||
background: white;
|
||||
box-shadow: 0 0 0 4px rgba(38, 166, 154, 0.15);
|
||||
}
|
||||
|
||||
.input-icon {
|
||||
position: absolute;
|
||||
right: 18px;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
font-size: 20px;
|
||||
color: var(--primary-mid);
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.password-toggle {
|
||||
position: absolute;
|
||||
right: 15px;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
background: none;
|
||||
border: none;
|
||||
color: var(--primary-mid);
|
||||
cursor: pointer;
|
||||
padding: 4px;
|
||||
border-radius: 4px;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.password-toggle:hover {
|
||||
background: rgba(119, 119, 100, 0.1);
|
||||
color: var(--primary-dark);
|
||||
}
|
||||
|
||||
.form-options {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-bottom: 30px;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.checkbox-label {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
cursor: pointer;
|
||||
color: var(--primary-dark);
|
||||
}
|
||||
|
||||
.checkbox-label input[type="checkbox"] {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.checkbox-custom {
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
border: 2px solid rgba(119, 119, 100, 0.3);
|
||||
border-radius: 4px;
|
||||
margin-right: 8px;
|
||||
position: relative;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
|
||||
background: var(--accent-teal);
|
||||
border-color: var(--accent-teal);
|
||||
}
|
||||
|
||||
.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
|
||||
content: '✓';
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
color: white;
|
||||
font-size: 12px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.forgot-password {
|
||||
color: var(--accent-teal);
|
||||
text-decoration: none;
|
||||
font-weight: 500;
|
||||
transition: color 0.3s ease;
|
||||
}
|
||||
|
||||
.forgot-password:hover {
|
||||
color: var(--primary-dark);
|
||||
}
|
||||
|
||||
.login-btn-submit {
|
||||
width: 100%;
|
||||
padding: 16px;
|
||||
background: var(--accent-teal);
|
||||
color: white;
|
||||
border: none;
|
||||
border-radius: 12px;
|
||||
font-size: 16px;
|
||||
font-weight: 600;
|
||||
cursor: pointer;
|
||||
transition: all 0.3s ease;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.login-btn-submit:hover:not(:disabled) {
|
||||
background: #1e8e82;
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 8px 25px rgba(38, 166, 154, 0.3);
|
||||
}
|
||||
|
||||
.login-btn-submit:disabled {
|
||||
opacity: 0.7;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
.btn-loading svg {
|
||||
animation: spin 1s linear infinite;
|
||||
}
|
||||
|
||||
@keyframes spin {
|
||||
from { transform: rotate(0deg); }
|
||||
to { transform: rotate(360deg); }
|
||||
}
|
||||
|
||||
.login-divider {
|
||||
text-align: center;
|
||||
margin: 30px 0;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.login-divider::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 0;
|
||||
right: 0;
|
||||
height: 1px;
|
||||
background: rgba(119, 119, 100, 0.2);
|
||||
}
|
||||
|
||||
.login-divider span {
|
||||
background: white;
|
||||
padding: 0 20px;
|
||||
color: var(--primary-mid);
|
||||
font-size: 14px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.social-login {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.social-btn {
|
||||
width: 100%;
|
||||
padding: 14px;
|
||||
border: 2px solid rgba(119, 119, 100, 0.2);
|
||||
border-radius: 12px;
|
||||
background: white;
|
||||
color: var(--primary-dark);
|
||||
font-size: 16px;
|
||||
font-weight: 500;
|
||||
cursor: pointer;
|
||||
transition: all 0.3s ease;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.social-btn:hover {
|
||||
border-color: var(--primary-mid);
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 4px 15px rgba(79, 71, 71, 0.1);
|
||||
}
|
||||
|
||||
.google-btn:hover {
|
||||
border-color: #4285f4;
|
||||
background: #f8f9fa;
|
||||
}
|
||||
|
||||
.login-footer {
|
||||
text-align: center;
|
||||
font-size: 14px;
|
||||
color: var(--primary-mid);
|
||||
}
|
||||
|
||||
.login-footer a {
|
||||
color: var(--accent-teal);
|
||||
text-decoration: none;
|
||||
font-weight: 500;
|
||||
transition: color 0.3s ease;
|
||||
}
|
||||
|
||||
.login-footer a:hover {
|
||||
color: var(--primary-dark);
|
||||
}
|
||||
|
||||
/* Messages */
|
||||
.success-message,
|
||||
.error-message {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
padding: 20px;
|
||||
text-align: center;
|
||||
transform: translateY(-100%);
|
||||
transition: transform 0.3s ease;
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
.success-message.show,
|
||||
.error-message.show {
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
.success-message {
|
||||
background: linear-gradient(135deg, #e8f5e8, #d4edda);
|
||||
color: #2e7d32;
|
||||
}
|
||||
|
||||
.error-message {
|
||||
background: linear-gradient(135deg, #ffebee, #f8d7da);
|
||||
color: #c62828;
|
||||
}
|
||||
|
||||
.success-icon,
|
||||
.error-icon {
|
||||
font-size: 48px;
|
||||
margin-bottom: 10px;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.success-message h3,
|
||||
.error-message h3 {
|
||||
margin-bottom: 5px;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
.success-message p,
|
||||
.error-message p {
|
||||
margin: 0;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
/* Login Button Styles */
|
||||
.login-btn {
|
||||
background: transparent;
|
||||
border: 2px solid var(--primary-dark);
|
||||
color: var(--primary-dark);
|
||||
padding: 8px 16px;
|
||||
border-radius: 8px;
|
||||
font-size: 14px;
|
||||
font-weight: 500;
|
||||
cursor: pointer;
|
||||
transition: all 0.3s ease;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.login-btn:hover {
|
||||
background: var(--primary-dark);
|
||||
color: white;
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
.register-btn {
|
||||
background: transparent;
|
||||
border: 2px solid var(--primary-dark);
|
||||
color: var(--primary-dark);
|
||||
padding: 8px 16px;
|
||||
border-radius: 8px;
|
||||
font-size: 14px;
|
||||
font-weight: 500;
|
||||
cursor: pointer;
|
||||
transition: all 0.3s ease;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.register-btn:hover {
|
||||
background: var(--primary-dark);
|
||||
color: white;
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
/* Register Button (White version) */
|
||||
.login-btn.register {
|
||||
background: transparent;
|
||||
border: 2px solid white;
|
||||
color: white;
|
||||
padding: 8px 16px;
|
||||
border-radius: 8px;
|
||||
font-size: 14px;
|
||||
font-weight: 500;
|
||||
cursor: pointer;
|
||||
transition: all 0.3s ease;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.login-btn.register:hover {
|
||||
background: white;
|
||||
color: var(--primary-dark);
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
/* Ensure login button is white on register page */
|
||||
body .login-btn {
|
||||
background: transparent !important;
|
||||
border: 2px solid white !important;
|
||||
color: white !important;
|
||||
}
|
||||
|
||||
body .login-btn:hover {
|
||||
background: white !important;
|
||||
color: var(--primary-dark) !important;
|
||||
}
|
||||
|
||||
/* Form Row for Two Columns */
|
||||
.form-row {
|
||||
display: flex;
|
||||
gap: 15px;
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
||||
.form-row .form-group {
|
||||
flex: 1;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
/* Password Strength Indicator */
|
||||
.password-strength {
|
||||
margin-top: 8px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.strength-bar {
|
||||
flex: 1;
|
||||
height: 4px;
|
||||
background: #e0e0e0;
|
||||
border-radius: 2px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.strength-bar::before {
|
||||
content: '';
|
||||
display: block;
|
||||
height: 100%;
|
||||
width: 0%;
|
||||
transition: width 0.3s ease, background-color 0.3s ease;
|
||||
background: #f44336;
|
||||
}
|
||||
|
||||
.strength-text {
|
||||
font-size: 12px;
|
||||
color: var(--primary-mid);
|
||||
}
|
||||
|
||||
/* Password Strength Levels */
|
||||
.strength-weak .strength-bar::before {
|
||||
width: 33%;
|
||||
background: #f44336;
|
||||
}
|
||||
|
||||
.strength-medium .strength-bar::before {
|
||||
width: 66%;
|
||||
background: #ff9800;
|
||||
}
|
||||
|
||||
.strength-strong .strength-bar::before {
|
||||
width: 100%;
|
||||
background: #4caf50;
|
||||
}
|
||||
|
||||
.strength-weak .strength-text {
|
||||
color: #f44336;
|
||||
}
|
||||
|
||||
.strength-medium .strength-text {
|
||||
color: #ff9800;
|
||||
}
|
||||
|
||||
.strength-strong .strength-text {
|
||||
color: #4caf50;
|
||||
}
|
||||
|
||||
/* Terms Links */
|
||||
.terms-link {
|
||||
color: var(--accent-teal);
|
||||
text-decoration: none;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.terms-link:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
/* Responsive Design */
|
||||
@media (max-width: 768px) {
|
||||
.login-content {
|
||||
padding: 100px 15px 20px 15px;
|
||||
}
|
||||
|
||||
.login-container {
|
||||
padding: 40px 30px;
|
||||
margin: 0 10px;
|
||||
}
|
||||
|
||||
.login-icon {
|
||||
font-size: 56px;
|
||||
}
|
||||
|
||||
.login-title {
|
||||
font-size: 28px;
|
||||
}
|
||||
|
||||
.login-subtitle {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.form-options {
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
gap: 15px;
|
||||
}
|
||||
|
||||
.social-btn {
|
||||
font-size: 14px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 480px) {
|
||||
.login-container {
|
||||
padding: 30px 20px;
|
||||
}
|
||||
|
||||
.login-title {
|
||||
font-size: 24px;
|
||||
}
|
||||
|
||||
.login-form .form-group input {
|
||||
font-size: 16px;
|
||||
padding: 12px 40px 12px 15px;
|
||||
}
|
||||
|
||||
.input-icon,
|
||||
.password-toggle {
|
||||
right: 15px;
|
||||
}
|
||||
}
|
||||
339
Profice WebSite/style/service.css
Normal file
339
Profice WebSite/style/service.css
Normal file
@@ -0,0 +1,339 @@
|
||||
/* Service Page Styles */
|
||||
|
||||
.service-container {
|
||||
max-width: 900px;
|
||||
margin: 0 auto;
|
||||
padding: 120px 20px 20px 20px;
|
||||
}
|
||||
|
||||
.service-header {
|
||||
text-align: center;
|
||||
margin-bottom: 60px;
|
||||
padding-bottom: 40px;
|
||||
border-bottom: 3px solid var(--accent-teal);
|
||||
}
|
||||
|
||||
.service-icon {
|
||||
font-size: 72px;
|
||||
margin-bottom: 20px;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.service-title {
|
||||
font-size: 42px;
|
||||
color: var(--primary-dark);
|
||||
margin-bottom: 15px;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.service-subtitle {
|
||||
font-size: 20px;
|
||||
color: var(--primary-mid);
|
||||
line-height: 1.6;
|
||||
max-width: 600px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.service-section {
|
||||
margin-bottom: 50px;
|
||||
padding: 40px;
|
||||
background: white;
|
||||
border-radius: 20px;
|
||||
box-shadow: 0 8px 30px rgba(79, 71, 71, 0.1);
|
||||
}
|
||||
|
||||
.section-title {
|
||||
font-size: 28px;
|
||||
color: var(--primary-dark);
|
||||
margin-bottom: 20px;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.section-text {
|
||||
font-size: 18px;
|
||||
line-height: 1.6;
|
||||
color: var(--primary-mid);
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
/* Features Grid */
|
||||
.features-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
|
||||
gap: 30px;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
.feature-item {
|
||||
background: var(--primary-light);
|
||||
padding: 30px;
|
||||
border-radius: 16px;
|
||||
text-align: center;
|
||||
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
||||
}
|
||||
|
||||
.feature-item:hover {
|
||||
transform: translateY(-5px);
|
||||
box-shadow: 0 15px 40px rgba(79, 71, 71, 0.15);
|
||||
}
|
||||
|
||||
.feature-icon {
|
||||
font-size: 48px;
|
||||
margin-bottom: 15px;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.feature-item h3 {
|
||||
color: var(--accent-teal);
|
||||
margin-bottom: 10px;
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.feature-item p {
|
||||
color: var(--primary-mid);
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
/* Process Timeline */
|
||||
.process-timeline {
|
||||
max-width: 800px;
|
||||
margin: 40px auto 0;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.process-item {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
margin-bottom: 40px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.process-number {
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
background: var(--accent-teal);
|
||||
color: white;
|
||||
border-radius: 50%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 24px;
|
||||
font-weight: bold;
|
||||
flex-shrink: 0;
|
||||
margin-right: 20px;
|
||||
}
|
||||
|
||||
.process-content {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.process-content h3 {
|
||||
color: var(--primary-dark);
|
||||
margin-bottom: 8px;
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.process-content p {
|
||||
color: var(--primary-mid);
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
/* Tech Grid */
|
||||
.tech-grid {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 15px;
|
||||
justify-content: center;
|
||||
margin: 30px 0;
|
||||
}
|
||||
|
||||
.tech-item {
|
||||
background: var(--primary-dark);
|
||||
color: white;
|
||||
padding: 12px 20px;
|
||||
border-radius: 25px;
|
||||
font-size: 14px;
|
||||
font-weight: 500;
|
||||
transition: transform 0.2s ease;
|
||||
}
|
||||
|
||||
.tech-item:hover {
|
||||
transform: translateY(-2px);
|
||||
background: var(--accent-teal);
|
||||
}
|
||||
|
||||
/* Benefits Grid */
|
||||
.benefits-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
||||
gap: 25px;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
.benefit-item {
|
||||
background: linear-gradient(135deg, var(--accent-teal), var(--accent-green));
|
||||
color: white;
|
||||
padding: 30px;
|
||||
border-radius: 16px;
|
||||
text-align: center;
|
||||
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
||||
}
|
||||
|
||||
.benefit-item:hover {
|
||||
transform: translateY(-5px);
|
||||
box-shadow: 0 15px 40px rgba(38, 166, 154, 0.3);
|
||||
}
|
||||
|
||||
.benefit-icon {
|
||||
font-size: 48px;
|
||||
margin-bottom: 15px;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.benefit-item h3 {
|
||||
margin-bottom: 10px;
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.benefit-item p {
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
/* Use Cases Grid */
|
||||
.use-cases-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
||||
gap: 25px;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
.use-case-item {
|
||||
background: var(--primary-light);
|
||||
padding: 25px;
|
||||
border-radius: 12px;
|
||||
border-left: 4px solid var(--accent-teal);
|
||||
transition: transform 0.3s ease;
|
||||
}
|
||||
|
||||
.use-case-item:hover {
|
||||
transform: translateY(-3px);
|
||||
box-shadow: 0 8px 25px rgba(79, 71, 71, 0.1);
|
||||
}
|
||||
|
||||
.use-case-item h3 {
|
||||
color: var(--accent-teal);
|
||||
margin-bottom: 10px;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
.use-case-item p {
|
||||
color: var(--primary-mid);
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
/* CTA Buttons */
|
||||
.cta-buttons {
|
||||
display: flex;
|
||||
gap: 20px;
|
||||
justify-content: center;
|
||||
margin-top: 40px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.cta-btn {
|
||||
padding: 16px 32px;
|
||||
border-radius: 30px;
|
||||
font-size: 18px;
|
||||
font-weight: 600;
|
||||
text-decoration: none;
|
||||
transition: all 0.3s ease;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.cta-btn.primary {
|
||||
background: var(--accent-teal);
|
||||
color: white;
|
||||
border: 2px solid var(--accent-teal);
|
||||
}
|
||||
|
||||
.cta-btn.primary:hover {
|
||||
background: white;
|
||||
color: var(--accent-teal);
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 8px 25px rgba(38, 166, 154, 0.3);
|
||||
}
|
||||
|
||||
.cta-btn.secondary {
|
||||
background: transparent;
|
||||
color: var(--primary-dark);
|
||||
border: 2px solid var(--primary-dark);
|
||||
}
|
||||
|
||||
.cta-btn.secondary:hover {
|
||||
background: var(--primary-dark);
|
||||
color: white;
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
/* Responsive Design */
|
||||
@media (max-width: 768px) {
|
||||
.service-container {
|
||||
padding: 100px 15px 20px 15px;
|
||||
}
|
||||
|
||||
.service-icon {
|
||||
font-size: 56px;
|
||||
}
|
||||
|
||||
.service-title {
|
||||
font-size: 32px;
|
||||
}
|
||||
|
||||
.service-subtitle {
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
.service-section {
|
||||
padding: 30px 20px;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.section-title {
|
||||
font-size: 24px;
|
||||
}
|
||||
|
||||
.section-text {
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.features-grid,
|
||||
.benefits-grid,
|
||||
.use-cases-grid {
|
||||
grid-template-columns: 1fr;
|
||||
gap: 20px;
|
||||
}
|
||||
|
||||
.process-item {
|
||||
flex-direction: column;
|
||||
text-align: center;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.process-number {
|
||||
margin: 0 auto 15px;
|
||||
}
|
||||
|
||||
.process-content {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.cta-buttons {
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.cta-btn {
|
||||
width: 100%;
|
||||
max-width: 300px;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user