/* ===== Logo Styles ===== */ .search-greeting { text-align: center; margin: 0 auto; padding: 10px 0; } /* Default desktop size */ .logo-auth { width: 380px; /* Large for desktop */ height: auto; max-width: 100%; object-fit: contain; transition: width 0.3s ease; /* Smooth resizing */ } /* ===== Mobile Adaptations ===== */ @media (max-width: 992px) { .logo-auth { width: 380px; /* Slightly smaller for tablets */ } } @media (max-width: 768px) { .logo-auth { width: 380px; /* Compact size for mobile */ } /* Auth container margins */ .auth-layout { margin: 15px !important; width: calc(100% - 30px) !important; } } @media (max-width: 480px) { .logo-auth { width: 380px; /* Extra small for phones */ } .auth-layout { margin: 10px !important; width: calc(100% - 20px) !important; } }