 /* General Reset and Body Styles */
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Poppins', sans-serif;
     background: #051A3A;
     /* Darker blue from allowed colors */
     color: #FFFFFF;
     /* White from allowed colors */
     overflow-x: hidden;
     /* Prevent horizontal scroll */
     line-height: 1.6;
     /* New flexbox centering for the login page content */
     display: flex;
     flex-direction: column;
     /* Arrange header, main, footer vertically */
     min-height: 100vh;
     /* Ensure it takes full viewport height */
     position: relative;
     /* For z-index context */
     z-index: 1;
     /* Ensure body content is above background */
 }

 /* Background Container for Dynamic Effects */
 .bg-container {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: -2;
     /* Ensures it's behind everything */
     /* Updated background to use a subtler yellow/orange tone from the provided snippet */
     background: linear-gradient(135deg, rgba(247, 170, 33, 0.7) 0%, #051A3A 70%, #051A3A 100%);
     /* Yellow with opacity, blending faster into Dark Blue */
     animation: backgroundPulse 20s ease-in-out infinite;
     /* Keep animation for subtle movement */
 }

 @keyframes backgroundPulse {

     0%,
     100% {
         filter: brightness(1);
     }

     25% {
         filter: brightness(1.1);
     }

     50% {
         filter: brightness(0.9);
     }

     75% {
         filter: brightness(1);
     }
 }

 /* Floating Elements for Visual Appeal (now themed icons) */
 .floating-elements {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: -1;
     /* Above bg-container, below content */
     pointer-events: none;
     /* Allows clicks to pass through */
     overflow: hidden;
 }

 .animated-icon-bg {
     position: absolute;
     opacity: 0;
     will-change: transform, opacity;
     font-size: 60px;
     /* Base size for background icons */
     color: rgba(247, 170, 33, 0.3);
     /* Subtler color for background icons */
     text-shadow: 0 0 10px rgba(247, 170, 33, 0.2);
     animation: floatIcon 15s infinite ease-in-out;
 }

 .animated-icon-bg.fa-gavel {
     color: rgba(247, 170, 33, 0.4);
 }

 .animated-icon-bg.fa-cricket-ball {
     color: rgba(255, 255, 255, 0.3);
 }

 .animated-icon-bg.fa-trophy {
     color: rgba(247, 170, 33, 0.3);
 }

 .animated-icon-bg.fa-medal {
     color: rgba(255, 255, 255, 0.2);
 }

 /* Specific style for the bat SVG */
 .animated-icon-bg.bat-svg {
     width: 80px;
     /* Adjust SVG container size */
     height: 80px;
     display: block;
     /* Ensure it takes up space for positioning */
 }

 .animated-icon-bg.bat-svg svg {
     width: 100%;
     /* Make SVG fill its container */
     height: 100%;
     fill: rgba(5, 26, 58, 0.4);
     /* Darker blue with transparency */
 }

 @keyframes floatIcon {

     0%,
     100% {
         transform: translate(0, 0) rotate(0deg) scale(1);
         opacity: 0.2;
     }

     25% {
         transform: translate(50px, -30px) rotate(90deg) scale(1.1);
         opacity: 0.3;
     }

     50% {
         transform: translate(-30px, -60px) rotate(180deg) scale(0.9);
         opacity: 0.1;
     }

     75% {
         transform: translate(-50px, 30px) rotate(270deg) scale(1.05);
         opacity: 0.25;
     }
 }


 /* Header Section */
 header {
     position: fixed;
     top: 0;
     width: 100%;
     padding: 20px 5%;
     /* Maintained 5% horizontal padding for responsiveness */
     background: rgba(5, 26, 58, 0.3);
     /* #051A3A with transparency */
     backdrop-filter: blur(20px) saturate(180%);
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
     /* White with transparency */
     z-index: 1000;
     /* Ensure header is on top */
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
 }

 header.scrolled {
     background: rgba(5, 26, 58, 0.95);
     /* #051A3A with transparency */
     backdrop-filter: blur(30px);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
     border-bottom-color: rgba(247, 170, 33, 0.6);
     /* #F7AA21 with transparency */
 }

 nav {
     display: flex;
     justify-content: space-between;
     /* Logo left, Nav/Buttons spread */
     align-items: center;
     max-width: 1400px;
     /* Limits content width */
     margin: 0 auto;
     /* Centers content within header padding */
     position: relative;
 }

 .site-logo {
     display: flex;
     align-items: center;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .site-logo-img {
     width: 80px;
     height: 80px;
     border-radius: 50%;
     object-fit: cover;
     margin-right: 10px;
     border: 2px solid #051A3A;
     /* #051A3A */
 }

 .site-logo-text-small {
     font-family: 'Orbitron', monospace;
     font-size: 0.8rem;
     font-weight: 900;
     background: linear-gradient(45deg, #FFFFFF, #051A3A);
     /* White and #051A3A */
     background-size: 300% 300%;
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     animation: logoGradient 4s ease-in-out infinite;
     text-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
     /* White with transparency */
 }

 .site-logo:hover {
     transform: scale(1.08) rotate(3deg);
     filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.9));
     /* White with transparency */
 }

 @keyframes logoGradient {

     0%,
     100% {
         background-position: 0% 50%;
     }

     50% {
         background-position: 100% 50%;
     }
 }

 /* Desktop Navigation Menu */
 .nav-links.desktop-nav-links {
     display: flex;
     list-style: none;
     gap: 40px;
     flex-grow: 1;
     /* Allows it to take available space */
     justify-content: center;
     /* Centers the items within its space */
     margin: 0;
     /* Remove default margin */
 }

 .nav-links.desktop-nav-links a {
     color: #FFFFFF;
     /* White */
     text-decoration: none;
     font-weight: 500;
     font-size: 1.1rem;
     position: relative;
     transition: all 0.3s ease;
     padding: 10px 0;
 }

 .nav-links.desktop-nav-links a::before {
     content: '';
     position: absolute;
     bottom: 0;
     left: 50%;
     width: 0;
     height: 3px;
     background: linear-gradient(45deg, #F7AA21, #051A3A);
     /* #F7AA21 and #051A3A */
     transform: translateX(-50%);
     transition: width 0.3s ease;
     border-radius: 2px;
 }

 .nav-links.desktop-nav-links a:hover::before,
 .nav-links.desktop-nav-links a.active::before {
     /* Active state */
     width: 100%;
 }

 .nav-links.desktop-nav-links a:hover,
 .nav-links.desktop-nav-links a.active {
     /* Active state */
     color: #F7AA21;
     /* #F7AA21 */
     transform: translateY(-2px);
 }

 /* Desktop Auth Buttons */
 .auth-buttons.desktop-auth-buttons {
     display: flex;
     gap: 15px;
 }

 .auth-button {
     padding: 10px 25px;
     border-radius: 30px;
     text-decoration: none;
     font-weight: 600;
     font-size: 1rem;
     transition: all 0.3s ease;
     border: 2px solid transparent;
 }

 .auth-button.login-signup {
     background: linear-gradient(45deg, #F7AA21, #F7AA21);
     /* #F7AA21 */
     color: #051A3A;
     /* #051A3A */
     box-shadow: 0 5px 15px rgba(247, 170, 33, 0.4);
     /* #F7AA21 with transparency */
 }

 .auth-button.login-signup:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 18px rgba(247, 170, 33, 0.6);
     /* #F7AA21 with transparency */
 }

 /* From Uiverse.io by mrhyddenn - Customized for theme */
 .button {
     -moz-appearance: none;
     -webkit-appearance: none;
     appearance: none;
     border: none;
     background: none;
     color: #FFFFFF;
     /* Changed to white for visibility */
     cursor: pointer;
     position: relative;
     padding: 8px;
     margin-bottom: 0;
     /* Set to 0 for use within the mobile menu, handled by parent gap */
     text-transform: uppercase;
     font-weight: bold;
     font-size: 14px;
     transition: all .15s ease;
     /* Added for better alignment in flex containers */
     display: inline-block;
     text-decoration: none;
     /* Ensure it behaves like a link visually */
 }

 .button::before,
 .button::after {
     content: '';
     display: block;
     position: absolute;
     right: 0;
     left: 0;
     height: calc(50% - 5px);
     border: 1px solid rgba(247, 170, 33, 0.6);
     /* Changed to theme orange with transparency */
     transition: all .15s ease;
 }

 .button::before {
     top: 0;
     border-bottom-width: 0;
 }

 .button::after {
     bottom: 0;
     border-top-width: 0;
 }

 .button:active,
 .button:focus {
     outline: none;
 }

 .button:active::before,
 .button:active::after {
     right: 3px;
     left: 3px;
 }

 .button:active::before {
     top: 3px;
 }

 .button:active::after {
     bottom: 3px;
 }

 .button_lg {
     position: relative;
     display: block;
     /* Padding adjusted for login form buttons */
     padding: 12px 20px;
     color: #FFFFFF;
     /* White text */
     background-color: #051A3A;
     /* Dark blue background */
     overflow: hidden;
     box-shadow: inset 0px 0px 0px 1px transparent;
 }

 .button_lg::before {
     content: '';
     display: block;
     position: absolute;
     top: 0;
     left: 0;
     width: 2px;
     height: 2px;
     background-color: #051A3A;
     /* Dark blue */
 }

 .button_lg::after {
     content: '';
     display: block;
     position: absolute;
     right: 0;
     bottom: 0;
     width: 4px;
     height: 4px;
     background-color: #051A3A;
     /* Dark blue */
     transition: all .2s ease;
 }

 .button_sl {
     display: block;
     position: absolute;
     top: 0;
     bottom: -1px;
     left: -8px;
     width: 0;
     background-color: #F7AA21;
     /* Changed to theme orange */
     transform: skew(-15deg);
     transition: all .2s ease;
 }

 .button_text {
     position: relative;
 }

 .button:hover {
     color: #051A3A;
     /* Text color changes to dark blue on hover */
 }

 .button:hover .button_sl {
     width: calc(100% + 15px);
 }

 .button:hover .button_lg::after {
     background-color: #FFFFFF;
     /* White on hover */
 }


 /* Navigation Toggle Button (Hamburger) */
 .nav-toggle {
     display: none;
     /* Hidden by default on desktop */
     font-size: 1.8rem;
     color: #FFFFFF;
     /* White */
     cursor: pointer;
     z-index: 1001;
     transition: color 0.3s ease, transform 0.3s ease;
     /* Added transform for icon animation */
 }

 .nav-toggle:hover {
     color: #F7AA21;
     /* #F7AA21 */
 }

 /* Mobile Off-canvas Menu Wrapper (now full-screen overlay) */
 .mobile-nav-menu-wrapper {
     visibility: hidden;
     opacity: 0;
     position: fixed;
     /* Keep fixed to cover viewport */
     top: 0;
     left: 0;
     width: 100%;
     height: 500px;
     background-color: rgba(5, 26, 58, 0.95);
     /* Dark blue with high transparency */
     backdrop-filter: blur(20px);
     /* Keep some blur */
     display: flex;
     /* Use flexbox to center content */
     flex-direction: column;
     justify-content: center;
     /* Center content vertically */
     align-items: center;
     /* Center content horizontally */
     padding: 20px;
     /* Some padding around the content */
     box-shadow: none;
     /* No shadow for full overlay */
     border-radius: 0;
     /* No border radius */
     border: none;
     /* No border */
     transform: scale(0.8);
     /* Start slightly smaller for a popup effect */
     transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
     overflow-y: auto;
     /* Allow scrolling if content overflows */
 }

 .mobile-nav-menu-wrapper.open {
     transform: scale(1);
     /* Scale to full size */
     opacity: 1;
     visibility: visible;
 }

 /* Mobile Navigation Menu (inside full-screen overlay) */
 .mobile-nav-menu-wrapper .nav-links {
     flex-direction: column;
     width: 100%;
     max-width: 300px;
     /* Constrain width for better readability */
     gap: 20px;
     margin-bottom: 30px;
     margin-top: 0;
     /* Ensure no top margin */
     text-align: center;
     /* Center text within links */
 }

 .mobile-nav-menu-wrapper .nav-links a {
     font-size: 1.5rem;
     /* Larger font for full screen */
     width: 100%;
     padding: 15px 0;
     /* More padding */
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
     /* White with transparency */
 }

 .mobile-nav-menu-wrapper .nav-links li:last-child a {
     border-bottom: none;
 }

 .mobile-nav-menu-wrapper .nav-links a.active {
     /* Active state for mobile menu */
     color: #F7AA21;
     border-bottom: 2px solid #F7AA21;
     /* Add a subtle underline */
     padding-bottom: 10px;
 }

 /* Mobile Auth Buttons (inside full-screen overlay) */
 .mobile-nav-menu-wrapper .auth-buttons {
     flex-direction: column;
     width: 100%;
     max-width: 300px;
     /* Match width of nav links */
     gap: 15px;
     margin-top: 20px;
     /* Space from nav links */
 }

 .mobile-nav-menu-wrapper .auth-buttons .button {
     /* Target the custom button */
     width: 100%;
     text-align: center;
     padding: 12px 25px;
 }

 /* Staggered animation for menu items */
 .mobile-nav-menu-wrapper.open .nav-links li,
 .mobile-nav-menu-wrapper.open .auth-buttons .button {
     opacity: 0;
     /* Start hidden */
     animation: slideInFromTop 0.4s ease-out forwards;
     /* New animation for items */
 }

 @keyframes slideInFromTop {
     0% {
         opacity: 0;
         transform: translateY(-20px);
     }

     100% {
         opacity: 1;
         transform: translateY(0);
     }
 }

 /* Apply staggered delays */
 .mobile-nav-menu-wrapper.open .nav-links li:nth-child(1) {
     animation-delay: 0.1s;
 }

 .mobile-nav-menu-wrapper.open .nav-links li:nth-child(2) {
     animation-delay: 0.15s;
 }

 .mobile-nav-menu-wrapper.open .nav-links li:nth-child(3) {
     animation-delay: 0.2s;
 }

 .mobile-nav-menu-wrapper.open .nav-links li:nth-child(4) {
     animation-delay: 0.25s;
 }

 .mobile-nav-menu-wrapper.open .nav-links li:nth-child(5) {
     animation-delay: 0.3s;
 }

 .mobile-nav-menu-wrapper.open .nav-links li:nth-child(6) {
     animation-delay: 0.35s;
 }

 .mobile-nav-menu-wrapper.open .nav-links li:nth-child(7) {
     animation-delay: 0.4s;
 }

 .mobile-nav-menu-wrapper.open .auth-buttons .button {
     animation-delay: 0.45s;
 }


 /* Login Page Specific Styles */
 main.login-page-section {
     padding-top: 150px;
     /* Increased padding-top to ensure space below fixed header */
     padding-bottom: 50px;
     /* Keep some bottom padding */
     flex-grow: 1;
     /* Allows it to take available space for centering */
     display: flex;
     /* Re-add flex to center content within this section */
     justify-content: center;
     align-items: center;
 }

 .login-form-container {
     background: rgba(5, 26, 58, 0.3);
     /* #051A3A with transparency (from new snippet) */
     backdrop-filter: blur(18px);
     /* from new snippet */
     border-radius: 20px;
     padding: 55px;
     /* Increased padding for a larger form */
     max-width: 575px;
     /* Increased max-width for a larger form */
     width: 90%;
     /* Responsive width (from new snippet) */
     margin: auto;
     /* Center horizontally (from new snippet) */
     border: 1px solid rgba(255, 255, 255, 0.08);
     /* White with transparency */
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
     /* from new snippet */
     text-align: center;
     position: relative;
     /* For z-index */
     z-index: 10;
     /* Ensure it's above background elements */
     animation: fadeInScale 0.8s ease-out forwards;
 }

 @keyframes fadeInScale {
     0% {
         opacity: 0;
         transform: scale(0.9);
     }

     100% {
         opacity: 1;
         transform: scale(1);
     }
 }

 .login-form-container h2 {
     font-family: 'Playfair Display', serif;
     font-size: 2.8rem;
     /* Slightly larger font size for the heading */
     margin-bottom: 35px;
     /* Increased margin */
     background: linear-gradient(45deg, #F7AA21, #FFFFFF);
     /* #F7AA21 and White */
     background-size: 200% auto;
     /* For color animation */
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     text-shadow: 0 0 15px rgba(247, 170, 33, 0.3);
     /* Added text-shadow */
     white-space: nowrap;
     /* Ensure title stays on one line */
     animation: textGradientShift 5s linear infinite alternate;
     /* Color animation */
 }

 @keyframes textGradientShift {
     0% {
         background-position: 0% 50%;
     }

     100% {
         background-position: 100% 50%;
     }
 }

 .form-group {
     margin-bottom: 5px;
     /* Increased margin */
     text-align: left;
 }

 .form-group label {
     display: block;
     margin-bottom: 10px;
     /* Increased margin */
     color: rgba(255, 255, 255, 0.85);
     /* Adjusted opacity */
     font-weight: 500;
     font-size: 1.05rem;
     /* Adjusted font size */
 }

 .form-group input[type="tel"],
 .form-group input[type="number"],
 .form-group input[type="password"] {
     /* Added for OTP input */
     width: 100%;
     padding: 16px;
     /* Increased padding */
     border-radius: 8px;
     /* Adjusted border-radius */
     border: 1px solid rgba(255, 255, 255, 0.15);
     /* Adjusted border opacity */
     background: rgba(0, 0, 0, 0.35);
     /* Adjusted background opacity */
     color: #FFFFFF;
     /* White */
     font-size: 1.1rem;
     /* Increased font size */
     transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
     box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
 }

 .form-group input[type="tel"]:focus,
 .form-group input[type="number"],
 .form-group input[type="password"]:focus {
     /* Added for OTP input */
     border-color: #F7AA21;
     /* #F7AA21 */
     background: rgba(0, 0, 0, 0.45);
     /* Adjusted background opacity */
     outline: none;
     box-shadow: 0 0 8px rgba(247, 170, 33, 0.3);
     /* Adjusted box-shadow */
 }

 /* Button styling for "Send OTP" and "Verify OTP" - uses the .button and .button_lg classes */
 .action-button {
     /* Removed direct padding here to rely on .button_lg padding */
     margin-top: 25px;
     /* Adjusted margin */
     width: 100%;
     /* Ensure full width */
 }

 .resend-otp-wrapper {
     text-align: right;
     /* Align content to the right */
 }

 .resend-otp-link {
     color: rgba(255, 255, 255, 0.7);
     /* Default color */
     text-decoration: none;
     transition: color 0.3s ease;
     cursor: pointer;
     padding: 5px 0;
     /* Adjusted padding */
     border-radius: 5px;
     display: inline-block;
     /* Allow timer to be next to it */
 }

 .resend-otp-link:hover:not(.disabled) {
     color: #F7AA21;
     /* #F7AA21 */
 }

 .resend-otp-link.disabled {
     color: rgba(255, 255, 255, 0.3);
     /* Faded color when disabled */
     cursor: not-allowed;
     pointer-events: none;
     /* Prevent click events */
 }

 .resend-timer {
     margin-left: 5px;
     /* Space between link and timer */
     font-weight: 600;
     color: #F7AA21;
     /* Highlight timer */
 }

 .forgot-password,
 .signup-link {
     /* Combined for consistent styling */
     display: block;
     margin-top: 20px;
     /* Increased margin */
     color: rgba(255, 255, 255, 0.7);
     /* White with transparency */
     text-decoration: none;
     font-size: 1rem;
     /* Adjusted font size */
     transition: color 0.3s ease;
 }

 .forgot-password:hover,
 .signup-link:hover {
     color: #F7AA21;
     /* #F7AA21 */
 }

 /* OTP Form Specific Styling */
 .otp-form-section {
     display: none;
     /* Hidden by default */
     animation: fadeIn 0.5s ease-out forwards;
 }

 @keyframes fadeIn {
     0% {
         opacity: 0;
     }

     100% {
         opacity: 1;
     }
 }

 .otp-form-section .form-group input[type="number"] {
     letter-spacing: 10px;
     /* Spacing for OTP digits */
     text-align: center;
 }

 /* Footer */
 footer {
     background: #051A3A;
     /* #051A3A */
     color: rgba(255, 255, 255, 0.7);
     /* White with transparency */
     padding: 60px 5%;
     /* Maintained 5% horizontal padding for responsiveness */
     font-size: 0.95rem;
     text-align: center;
     margin-top: auto;
     /* Push footer to the bottom */
 }

 .footer-content {
     display: flex;
     flex-wrap: wrap;
     justify-content: space-around;
     gap: 30px;
     max-width: 1200px;
     /* Limits content width */
     margin: 0 auto 40px;
     /* Centers content within footer padding */
     text-align: left;
 }

 .footer-section {
     flex: 1;
     min-width: 200px;
     max-width: 300px;
 }

 .footer-section h4 {
     font-family: 'Playfair Display', serif;
     font-size: 1.3rem;
     color: #F7AA21;
     /* #F7AA21 */
     margin-bottom: 20px;
     font-weight: 600;
 }

 .footer-section p {
     margin-bottom: 10px;
 }

 .footer-section ul {
     list-style: none;
 }

 .footer-section ul li {
     margin-bottom: 8px;
 }

 .footer-section ul li a {
     color: rgba(255, 255, 255, 0.7);
     /* White with transparency */
     text-decoration: none;
     transition: color 0.2s ease;
 }

 .footer-section ul li a:hover {
     color: #F7AA21;
     /* #F7AA21 */
 }

 .social-icons a {
     color: #F7AA21;
     /* #F7AA21 icons */
     font-size: 1.8rem;
     margin-right: 15px;
     transition: transform 0.2s ease, color 0.2s ease;
 }

 .social-icons a:hover {
     transform: translateY(-3px) scale(1.1);
     color: #FFFFFF;
     /* White on hover */
 }

 .footer-bottom {
     margin-top: 40px;
     padding-top: 20px;
     border-top: 1px solid rgba(255, 255, 255, 0.08);
     /* White with transparency */
     color: rgba(255, 255, 255, 0.6);
     /* White with transparency */
 }

 /* Responsive Design */
 @media (max-width: 1300px) {
     .site-logo-img {
         width: 70px;
         /* Slightly smaller logo */
         height: 70px;
     }

     .site-logo-text-small {
         font-size: 0.7rem;
         /* Smaller text */
     }

     .nav-links.desktop-nav-links {
         gap: 25px;
         /* Reduce gap between nav items */
     }

     .nav-links.desktop-nav-links a {
         /* Corrected selector */
         font-size: 1rem;
         /* Smaller nav link font size */
         padding: 8px 0;
     }

     .auth-buttons.desktop-auth-buttons .auth-button {
         padding: 8px 20px;
         /* Smaller button padding */
         font-size: 0.9rem;
         /* Smaller button font size */
     }
 }

 @media (max-width: 1024px) {
     nav {
         flex-wrap: nowrap;
         /* Prevent wrapping on this breakpoint */
         justify-content: space-between;
         align-items: center;
     }

     .nav-links.desktop-nav-links,
     .auth-buttons.desktop-auth-buttons {
         display: none;
         /* Hide desktop nav and buttons */
     }

     .nav-toggle {
         display: block;
         /* Show hamburger icon */
     }

     /* These styles are for the main site's hero/sections, not directly for the login page, but kept for overall consistency if this file were integrated */
     .hero h1 {
         font-size: 4rem;
     }

     .section-title {
         font-size: 2.8rem;
     }

     .pricing-card .price {
         font-size: 2.8rem;
     }
 }

 @media (max-width: 768px) {
     nav {
         flex-direction: row;
         /* Keep logo and toggle on one row */
         justify-content: space-between;
         align-items: center;
     }

     /* These styles are for the main site's hero/sections, not directly for the login page, but kept for overall consistency if this file were integrated */
     .hero {
         padding: 0 20px;
     }

     .hero h1 {
         font-size: 3rem;
     }

     .hero-subtitle {
         font-size: 1.6rem;
     }

     .hero-description {
         font-size: 1rem;
     }

     .hero-buttons {
         flex-direction: column;
         gap: 15px;
     }

     .cta-primary,
     .cta-secondary {
         width: 80%;
         max-width: 300px;
         padding: 14px 30px;
     }

     .section-title {
         font-size: 2.5rem;
     }

     .form-section,
     .about-content,
     .app-content,
     .footer-content {
         /* General layout adjustments */
         flex-direction: column;
         align-items: center;
         text-align: center;
     }

     .form-column,
     .about-text,
     .app-text,
     .footer-section {
         /* General layout adjustments */
         min-width: unset;
         max-width: 100%;
     }

     .app-badges {
         text-align: center;
     }

     .footer-section {
         text-align: center;
     }

     .login-form-container {
         padding: 40px;
         /* Adjusted padding for tablet screens */
         max-width: 450px;
         /* Adjusted max-width for tablet screens */
     }

     .login-form-container h2 {
         font-size: 2.2rem;
     }

     .form-group input[type="tel"],
     .form-group input[type="number"] {
         padding: 14px;
         font-size: 1rem;
     }

     .action-button {
         margin-top: 25px;
     }

     .resend-otp-wrapper {
         margin-top: 10px;
         /* Adjusted margin */
         margin-bottom: 15px;
         /* Adjusted margin */
     }

     .forgot-password,
     .signup-link {
         margin-top: 15px;
         font-size: 0.95rem;
     }
 }

 @media (max-width: 480px) {

     /* These styles are for the main site's hero/sections, not directly for the login page, but kept for overall consistency if this file were integrated */
     .hero h1 {
         font-size: 2.5rem;
     }

     .hero-subtitle {
         font-size: 1.7rem;
     }

     .section-title {
         font-size: 2rem;
     }

     .site-logo-text-small {
         /* Changed from .logo */
         font-size: 2rem;
         /* Adjusted for smaller screens */
     }

     header {
         padding: 15px 3%;
     }

     /* Removed other section padding adjustments as they are not part of the login page */
     .login-form-container {
         padding: 30px;
         /* Adjusted padding for smaller screens */
         width: 95%;
         /* Adjusted width for smaller screens */
     }

     .login-form-container h2 {
         font-size: 2rem;
         /* Adjusted font size for smaller screens */
         margin-bottom: 25px;
     }

     .form-group input[type="tel"],
     .form-group input[type="number"] {
         padding: 12px;
         /* Adjusted input padding for smaller screens */
         font-size: 1rem;
     }

     .button_lg {
         padding: 10px 20px;
         /* Adjusted button padding for smaller screens */
     }

     .action-button {
         margin-top: 20px;
     }

     .resend-otp-wrapper {
         margin-top: 5px;
         /* Adjusted margin */
         margin-bottom: 10px;
         /* Adjusted margin */
     }

     .forgot-password,
     .signup-link {
         margin-top: 10px;
         font-size: 0.9rem;
     }
 }