diff --git a/frontend/src/components/base/AuthLockBlock.astro b/frontend/src/components/base/AuthLockBlock.astro index df9e894..76f3eda 100644 --- a/frontend/src/components/base/AuthLockBlock.astro +++ b/frontend/src/components/base/AuthLockBlock.astro @@ -28,16 +28,15 @@ const delay = typeof dataDelay === 'number' ? dataDelay : parseInt(String(dataDe data-delay={delay} >
- - - + +

{title}

{description}

- - + + {buttonText} @@ -78,9 +77,7 @@ const delay = typeof dataDelay === 'number' ? dataDelay : parseInt(String(dataDe margin-bottom: 1.5rem; box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.15); } - - .lock-icon { width: 2rem; height: 2rem; } - + .lock-title { color: #0f172a; font-size: 1.375rem; @@ -116,12 +113,6 @@ const delay = typeof dataDelay === 'number' ? dataDelay : parseInt(String(dataDe box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4); } - .button-icon { - width: 1.25rem; - height: 1.25rem; - margin-right: 0.5rem; - } - .auth-hint { margin: 1.25rem 0 0; color: #64748b; @@ -157,11 +148,5 @@ const delay = typeof dataDelay === 'number' ? dataDelay : parseInt(String(dataDe font-size: 0.8125rem; padding: 0.75rem 1rem; } - - .button-icon { - width: 1rem; - height: 1rem; - margin-right: 0.375rem; - } } diff --git a/frontend/src/components/reviews/ReviewForm.tsx b/frontend/src/components/reviews/ReviewForm.tsx index 6feb59f..abc17bf 100644 --- a/frontend/src/components/reviews/ReviewForm.tsx +++ b/frontend/src/components/reviews/ReviewForm.tsx @@ -591,21 +591,22 @@ export default function ReviewForm(props: ReviewFormProps) { justify-content: center; gap: 0.5rem; width: 100%; - padding: 1rem 1.5rem; - background: linear-gradient(135deg, #eac26e 0%, #ce9f40 100%); + padding: 1rem 2rem; + background: linear-gradient(135deg, #d4af37 0%, #eac26e 100%); border: none; - border-radius: 12px; - color: #ffffff; - font-size: 1rem; + border-radius: 0.75rem; + color: #1e293b; + font-size: 1.1rem; font-weight: 700; cursor: pointer; - transition: all 0.3s ease; + transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); + box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3); margin-top: 0.5rem; } .submit-btn:hover:not(:disabled) { - transform: translateY(-2px); - box-shadow: 0 6px 20px rgba(234, 194, 110, 0.4); + transform: translateY(-3px); + box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4); } .submit-btn:disabled {