:root {
--color-primary: #2934c4;
--color-primary-hover: #1f2596;
--color-bg-light: #f1f6fb;
--color-text-main: #1a1a1a;
--color-text-muted: #6B7280;
--color-success: #10B981;
--color-error: #EF4444;
--font-heading: 'Poppins', sans-serif;
--font-body: 'Inter', sans-serif;
} html {
scroll-behavior: smooth;
} .redesign-form-box {
max-width: 640px;
margin: 0 auto;
background: #FFFFFF;
border-radius: 12px;
box-shadow: 0 8px 24px rgba(26, 26, 26, 0.12);
border-top: 4px solid var(--color-primary);
padding: 2rem;
}
@media (min-width: 768px) {
.redesign-form-box {
padding: 2.5rem;
}
} .form-progress {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 2.5rem;
position: relative;
}
.progress-step {
display: flex;
flex-direction: column;
align-items: center;
gap: 0.5rem;
flex: 0 0 auto;
z-index: 2;
}
.progress-circle {
width: 48px;
height: 48px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 600;
font-size: 1.125rem;
font-family: var(--font-body);
border: 2px solid #d1d5db;
background: #FFFFFF;
color: #9ca3af;
transition: all 0.3s ease;
}
.progress-label {
font-size: 0.875rem;
font-family: var(--font-body);
color: var(--color-text-muted);
font-weight: 500;
transition: all 0.3s ease;
}
.progress-step.active .progress-circle {
background: var(--color-primary);
border-color: var(--color-primary);
color: #FFFFFF;
}
.progress-step.active .progress-label {
color: var(--color-primary);
font-weight: 600;
}
.progress-step.completed .progress-circle {
background: var(--color-success);
border-color: var(--color-success);
color: #FFFFFF;
}
.progress-step.completed .progress-circle::before {
content: "✓";
font-size: 1.25rem;
}
.progress-line {
flex: 1;
height: 2px;
background: #d1d5db;
margin: 0 0.5rem;
position: relative;
top: -12px;
}
@media (max-width: 640px) {
.progress-circle {
width: 40px;
height: 40px;
font-size: 1rem;
}
.progress-label {
font-size: 0.75rem;
}
.progress-line {
margin: 0 0.25rem;
}
} .form-step {
display: none;
opacity: 0;
transition: opacity 0.2s ease;
}
.form-step.active {
display: block;
opacity: 1;
}
.step-description {
font-size: 0.9375rem;
color: var(--color-text-muted);
margin-bottom: 1.5rem;
line-height: 1.6;
} .form-field {
margin-bottom: 1.5rem;
}
.form-field label {
display: block;
font-weight: 500;
font-size: 0.9375rem;
color: var(--color-text-main);
margin-bottom: 0.5rem;
font-family: var(--font-body);
}
.form-field .required {
color: var(--color-error);
}
.form-field .optional {
color: var(--color-text-muted);
font-weight: 400;
font-size: 0.875rem;
}
.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="url"],
.form-field textarea {
width: 100%;
padding: 12px 16px;
font-size: 16px;
font-family: var(--font-body);
border: 1px solid #d1d5db;
border-radius: 8px;
background: #FFFFFF;
color: var(--color-text-main);
transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-field input:focus,
.form-field textarea:focus {
outline: none;
border-color: var(--color-primary);
box-shadow: 0 0 0 3px rgba(41, 52, 196, 0.1);
}
.form-field input.field-error,
.form-field textarea.field-error {
border-color: var(--color-error);
box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}
.form-field textarea {
resize: vertical;
min-height: 80px;
}
.error-message {
color: var(--color-error);
font-size: 0.875rem;
margin-top: 4px;
display: block;
min-height: 1.25rem;
font-family: var(--font-body);
}
.help-text {
color: var(--color-text-muted);
font-size: 0.875rem;
margin-top: 4px;
display: block;
font-family: var(--font-body);
} .inspiration-group {
margin-bottom: 2rem;
padding-bottom: 2rem;
border-bottom: 1px solid #e5e7eb;
}
.inspiration-group:last-child {
border-bottom: none;
margin-bottom: 0;
padding-bottom: 0;
}
.inspiration-title {
font-size: 1rem;
font-weight: 600;
color: var(--color-text-main);
margin-bottom: 1rem;
font-family: var(--font-heading);
} .form-buttons {
display: flex;
flex-direction: column;
gap: 1rem;
margin-top: 2rem;
}
@media (min-width: 768px) {
.form-buttons {
flex-direction: row;
justify-content: space-between;
}
}
.btn-next,
.btn-submit {
width: 100%;
padding: 14px 24px;
min-height: 48px;
font-size: 1rem;
font-weight: 600;
font-family: var(--font-body);
background: var(--color-primary);
color: #FFFFFF;
border: none;
border-radius: 8px;
cursor: pointer;
transition: all 0.2s ease;
}
.btn-next:hover,
.btn-submit:hover {
background: var(--color-primary-hover);
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(41, 52, 196, 0.3);
}
.btn-next:disabled,
.btn-submit:disabled {
background: #9ca3af;
cursor: not-allowed;
transform: none;
box-shadow: none;
}
.btn-prev {
padding: 14px 24px;
min-height: 48px;
font-size: 1rem;
font-weight: 500;
font-family: var(--font-body);
background: transparent;
color: var(--color-primary);
border: 1px solid var(--color-primary);
border-radius: 8px;
cursor: pointer;
transition: all 0.2s ease;
}
.btn-prev:hover {
background: var(--color-bg-light);
}
@media (min-width: 768px) {
.btn-next,
.btn-submit {
width: auto;
flex: 1;
}
.btn-prev {
width: auto;
}
} .form-result {
text-align: center;
padding: 3rem 2rem;
}
.result-icon {
font-size: 4rem;
margin-bottom: 1.5rem;
}
.success-panel .result-icon {
color: var(--color-success);
}
.error-panel .result-icon {
color: var(--color-error);
}
.form-result h3 {
font-size: 1.5rem;
font-weight: 600;
color: var(--color-text-main);
margin-bottom: 1rem;
font-family: var(--font-heading);
}
.form-result p {
font-size: 1rem;
color: var(--color-text-muted);
line-height: 1.6;
max-width: 400px;
margin: 0 auto 1.5rem;
font-family: var(--font-body);
}
.btn-retry {
padding: 12px 24px;
font-size: 1rem;
font-weight: 600;
font-family: var(--font-body);
background: var(--color-primary);
color: #FFFFFF;
border: none;
border-radius: 8px;
cursor: pointer;
transition: all 0.2s ease;
}
.btn-retry:hover {
background: var(--color-primary-hover);
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(41, 52, 196, 0.3);
} .btn-submit.loading {
pointer-events: none;
opacity: 0.7;
} #website_url_confirm {
position: absolute;
left: -9999px;
width: 1px;
height: 1px;
opacity: 0;
} .faq-toggle {
cursor: pointer;
}
.faq-answer {
transition: all 0.3s ease;
}
.faq-icon i.rotate-45 {
transform: rotate(45deg);
}