/*
 Theme Name:   Mega Hosting Manager
 Theme URI:    https://mhmcloud.com/theme/
 Author:       MHMCloud
 Author URI:   https://mhmcloud.com
 Description:  MHM — The complete WHMCS alternative built on WordPress. Run a full hosting business with client portal, invoicing, billing, support tickets, domain management, SSL, affiliates, email templates, and multi-server provisioning — all without WHMCS monthly fees or complexity.
 Version:      2.7.0
 Requires at least: 6.0
 Tested up to:     6.7
 Requires PHP:     8.0
 Text Domain:      mhm
 Tags:             hosting, whmcs-alternative, client-portal, billing, domains, e-commerce
*/

/* ───────────────────────────────────────────────
   ROOT VARIABLES AND GLOBAL STYLES
─────────────────────────────────────────────── */
:root {
    --primary-blue: #003da5;
    --primary-yellow: #ffd300;
    --dark-blue: #002b75;
    --white: #ffffff;
    --light-grey: #f4f7fa;
    --text-main: #333;
    --text-muted: #666;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
body { background-color: var(--light-grey); color: var(--text-main); line-height: 1.6; }

html {
    font-size: 16px;            /* base */
}

@media (max-width: 768px) {
    html {
        font-size: 15px;        /* slightly smaller base on mobile */
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
}

/* ───────────────────────────────────────────────
   TOP BAR
─────────────────────────────────────────────── */
/* Enhanced Top Menu Bar with better visibility */
.top-bar {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    color: var(--white);
    padding: 12px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.2);
}
.top-bar-left a { 
    text-decoration: none; 
    color: var(--white); 
    font-weight: 500; 
    transition: color 0.3s; 
    display: flex;
    align-items: center;
    gap: 8px;
}
.top-bar-left a:hover { color: var(--primary-yellow); }
.top-bar-left i { color: #25D366; font-size: 18px; }
.top-bar-right { display: flex; gap: 28px; align-items: center; }
.top-bar-right a { 
    text-decoration: none; 
    color: var(--white); 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    font-weight: 500; 
    transition: color 0.3s; 
}
.top-bar-right a:hover { color: var(--primary-yellow); }
.top-bar-right i { color: var(--primary-yellow); font-size: 16px; }

/* ───────────────────────────────────────────────
   HEADER AND NAVIGATION – IMPROVED VERSION
─────────────────────────────────────────────── */
header {
    background: var(--primary-blue);
    padding: 1.2rem 10%;                /* slightly less vertical padding */
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    flex-wrap: nowrap;                  /* prevent early wrapping */
}

/* Logo – make it shrink a bit on smaller desktops */
.logo {
    font-size: clamp(1.6rem, 2.8vw, 1.9rem);  /* responsive sizing */
    font-weight: 800;
    color: var(--primary-yellow);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;                /* prevent logo text breaking */
    flex-shrink: 0;                     /* logo never shrinks below its content */
}
.logo i {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    color: var(--white);
}
.logo span {
    color: var(--white);
}

/* Main navigation */
nav {
    flex: 1;                            /* let nav take available space */
    display: flex;
    justify-content: flex-end;          /* push menu to right */
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 2.2rem;                        /* better control than margin-left on li */
}

nav ul li {
    margin: 0;                          /* remove old margin-left */
}

nav ul li a {
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 1.05rem;
    transition: color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;                /* prevent link text wrapping */
}

nav ul li a {
    position: relative;
}
nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--primary-yellow);
    border-radius: 2px;
    transition: transform 0.25s ease;
}
nav ul li a:hover,
nav ul li a:focus {
    color: var(--primary-yellow);
    transform: translateY(-1px);
}
nav ul li a:hover::after,
nav ul li a:focus::after {
    transform: translateX(-50%) scaleX(1);
}
nav ul li.current-menu-item > a,
nav ul li.current_page_item > a {
    color: var(--primary-yellow);
}
nav ul li.current-menu-item > a::after,
nav ul li.current_page_item > a::after {
    transform: translateX(-50%) scaleX(1);
}

/* ── Nav CTA Action Button ── */
.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 20px;
    border-radius: 50px;
    font-size: .875rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: all .2s ease;
    margin-left: 12px;
    flex-shrink: 0;
}
.nav-cta-btn i { font-size: .85rem; }
.nav-cta-primary  { background: var(--primary-yellow); color: var(--primary-blue); box-shadow: 0 2px 8px rgba(255,211,0,.35); }
.nav-cta-primary:hover  { background: #ffe033; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(255,211,0,.5); }
.nav-cta-outline  { background: transparent; color: var(--primary-blue); border: 2px solid var(--primary-blue); }
.nav-cta-outline:hover  { background: var(--primary-blue); color: #fff; }
.nav-cta-yellow   { background: var(--primary-yellow); color: #1a1a1a; }
.nav-cta-yellow:hover   { background: #ffe033; transform: translateY(-1px); }
.nav-cta-white    { background: #fff; color: var(--primary-blue); box-shadow: 0 2px 8px rgba(0,0,0,.1); }
.nav-cta-white:hover    { background: #f8fafc; transform: translateY(-1px); }

/* Hamburger / mobile toggle */
.mobile-menu {
    display: none;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    background: transparent;
    border: none;
}

/* ── Dropdown submenus ─────────────────────────────────────── */
nav ul li { position: relative; }
nav ul li .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,29,90,.15);
    padding: 8px 0;
    z-index: 1000;
    border: 1px solid rgba(0,29,90,.08);
}
nav ul li .sub-menu li { margin: 0; }
nav ul li .sub-menu a {
    display: block;
    padding: 10px 18px;
    color: #1e293b;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background .15s, color .15s;
    white-space: nowrap;
}
nav ul li .sub-menu a:hover { background: #f1f5f9; color: var(--primary-blue); }
nav ul li:hover > .sub-menu,
nav ul li.submenu-open > .sub-menu { display: block; }

.submenu-toggle {
    display: none;
    background: none;
    border: none;
    color: inherit;
    padding: 4px 8px;
    cursor: pointer;
    font-size: 0.75rem;
    vertical-align: middle;
}

/* ── Mobile nav improvements ───────────────────────────────── */
@media (max-width: 768px) {
    nav ul li .sub-menu {
        position: static;
        box-shadow: none;
        border: none;
        border-left: 3px solid rgba(255,255,255,.25);
        border-radius: 0;
        background: rgba(0,0,0,.15);
        padding: 4px 0;
        display: none;
    }
    nav ul li.submenu-open > .sub-menu { display: block; }
    nav ul li .sub-menu a { color: rgba(255,255,255,.85); padding: 8px 24px; font-size: 0.85rem; }
    nav ul li .sub-menu a:hover { background: rgba(255,255,255,.1); color: #fff; }
    .submenu-toggle { display: inline-flex; align-items: center; color: rgba(255,255,255,.8); }
    .submenu-toggle i { transition: transform .25s; }
    li.submenu-open .submenu-toggle i { transform: rotate(180deg); }
    /* Hamburger close icon */
    .mobile-menu i.fa-times { font-size: 22px; }
}

/* ───────────────────────────────────────────────
   HERO AND SEARCH
─────────────────────────────────────────────── */
/* Hero & Search */
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 100px 10% 140px;
    text-align: center;
}
.hero h1 { font-size: 52px; margin-bottom: 25px; }
.domain-search-container { max-width: 900px; margin: 0 auto; }
.domain-search {
    background: var(--white);
    padding: 10px;
    border-radius: 50px;
    display: flex;
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}
.domain-search input { flex: 1; border: none; padding: 18px 30px; border-radius: 50px; outline: none; font-size: 18px; }
.domain-search button { background: var(--primary-yellow); color: var(--primary-blue); border: none; padding: 0 50px; border-radius: 50px; font-weight: 800; cursor: pointer; transition: 0.3s; }
.domain-search button:hover { background: #e6bc00; }

.popular-domains { margin-top: 30px; display: flex; justify-content: center; gap: 25px; flex-wrap: wrap; }
.domain-tag { background: rgba(255,255,255,0.15); padding: 8px 20px; border-radius: 25px; font-size: 15px; border: 1px solid rgba(255,255,255,0.3); }
.domain-tag b { color: var(--primary-yellow); }

.domain-search-box {
    transition: all 0.3s ease;
}
.domain-search-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}
.domain-search-form input:focus {
    box-shadow: 0 0 0 4px rgba(255,211,0,0.3);
}
.popular-extensions span {
    transition: all 0.2s;
}
.popular-extensions span:hover {
    background: rgba(255,255,255,0.35);
    transform: scale(1.05);
}

/* ───────────────────────────────────────────────
   STATS BAR
─────────────────────────────────────────────── */
/* Stats Bar */
.stats-bar { 
    display: flex; 
    justify-content: space-around; 
    background: var(--white); 
    padding: 40px 10%; 
    margin: -70px auto 0; 
    border-radius: 15px; 
    box-shadow: 0 8px 25px rgba(0,0,0,0.05); 
    max-width: 85%; 
    position: relative; 
    z-index: 2; 
}
.stat-item { text-align: center; }
.stat-item h3 { color: var(--primary-blue); font-size: 32px; }
.stat-item p { font-size: 16px; color: var(--text-muted); }

/* ───────────────────────────────────────────────
   PRICING SECTION
─────────────────────────────────────────────── */
/* Pricing Section */
/* Pricing styles are in template-parts/pricing.php */
/* ── Pricing card styles moved to template-parts/pricing.php ── */

/* ───────────────────────────────────────────────
   FEATURE FOCUS
─────────────────────────────────────────────── */
/* Feature Focus */
.feature-focus {
    display: flex;
    align-items: center;
    padding: 120px 10%;
    background: #fff;
    gap: 80px;
}
.feature-focus-content { flex: 1; }
.feature-focus-content h2 { font-size: 42px; color: var(--primary-blue); margin-bottom: 25px; line-height: 1.3; }
.feature-focus-content p { font-size: 20px; color: var(--text-muted); margin-bottom: 40px; }
.feature-focus-image { flex: 1; }
.feature-focus-image img { width: 100%; border-radius: 25px; box-shadow: 0 25px 50px rgba(0,0,0,0.1); }
.btn-cta { 
    padding: 18px 50px; 
    background: var(--primary-blue); 
    color: #fff; 
    text-decoration: none; 
    border-radius: 50px; 
    font-weight: 600; 
    display: inline-block; 
    transition: 0.3s; 
}
.btn-cta:hover { background: var(--dark-blue); transform: translateY(-5px); }

/* ───────────────────────────────────────────────
   WHY CHOOSE US
─────────────────────────────────────────────── */
/* Why Choose Us */
.why-choose-us {
    display: flex;
    align-items: center;
    padding: 120px 10%;
    background: var(--light-grey);
    gap: 80px;
    flex-direction: row-reverse;
}
.why-choose-us-content { flex: 1; }
.why-choose-us-content h2 { font-size: 42px; color: var(--primary-blue); margin-bottom: 25px; line-height: 1.3; }
.why-choose-us-content p { font-size: 20px; color: var(--text-muted); margin-bottom: 40px; }
.why-choose-us-image { flex: 1; }
.why-choose-us-image img { width: 100%; border-radius: 25px; box-shadow: 0 25px 50px rgba(0,0,0,0.1); }
.feature-icons { display: flex; gap: 30px; margin-bottom: 40px; }
.feature-icons div { text-align: center; }
.feature-icons i { color: var(--primary-yellow); font-size: 32px; margin-bottom: 10px; }
.feature-icons b { display: block; font-size: 16px; }

/* ───────────────────────────────────────────────
   FAQ SECTION
─────────────────────────────────────────────── */
/* FAQ Section */
.faq-section {
    padding: 120px 10%;
    background: #fff;
    text-align: center;
}
.faq-section h2 { font-size: 40px; color: var(--primary-blue); margin-bottom: 50px; }
.faq-container { max-width: 900px; margin: 0 auto; text-align: left; }
.faq-item { margin-bottom: 20px; border-bottom: 1px solid #eee; }
.faq-question { 
    font-size: 20px; 
    font-weight: 600; 
    color: var(--text-main); 
    cursor: pointer; 
    padding: 15px 0; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}
.faq-question i { color: var(--primary-blue); font-size: 18px; transition: transform 0.3s; }
.faq-answer { display: none; font-size: 16px; color: var(--text-muted); padding-bottom: 15px; }
.faq-item.active .faq-answer { display: block; }
.faq-item.active .faq-question i { transform: rotate(180deg); }

/* ───────────────────────────────────────────────
   BLOGS SECTION
─────────────────────────────────────────────── */
/* Blogs Section */
.blogs-section {
    padding: 100px 10%;
    background: var(--white);
    text-align: center;
}
.blogs-section h2 { font-size: 42px; color: var(--primary-blue); margin-bottom: 20px; }
.blogs-section p.subtitle { font-size: 18px; color: var(--text-muted); max-width: 700px; margin: 0 auto 60px; }
.blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(0,0,0,0.12); }
.blog-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.blog-meta {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background: linear-gradient(to bottom, rgba(0,61,165,0.8), transparent);
    color: white;
    font-size: 13px;
    font-weight: 500;
}
.blog-meta span { display: flex; align-items: center; gap: 6px; }
.blog-content { padding: 25px; }
.blog-content h3 { font-size: 22px; margin-bottom: 15px; color: var(--primary-blue); line-height: 1.3; }
.blog-content p { color: var(--text-muted); font-size: 15px; margin-bottom: 20px; }
.blog-footer { display: flex; justify-content: space-between; align-items: center; padding: 0 25px 25px; }
.read-more {
    background: var(--primary-blue);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}
.read-more:hover { background: var(--dark-blue); }
.author { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-muted); }
.author i { color: var(--primary-yellow); font-size: 20px; }

/* ───────────────────────────────────────────────
   NEWSLETTER SECTION
─────────────────────────────────────────────── */
/* Newsletter */
.newsletter-section {
    background: var(--primary-blue);
    color: white;
    padding: 100px 10%;
    text-align: center;
}
.newsletter-box {
    background: white;
    color: var(--text-main);
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}
.newsletter-box h3 { font-size: 36px; margin-bottom: 15px; color: var(--primary-blue); }
.newsletter-box p { font-size: 18px; color: var(--text-muted); margin-bottom: 35px; }
.newsletter-form {
    display: flex;
    max-width: 550px;
    margin: 0 auto;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.newsletter-form input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    font-size: 16px;
    outline: none;
}
.newsletter-form button {
    background: var(--primary-yellow);
    color: var(--primary-blue);
    border: none;
    padding: 0 40px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}
.newsletter-form button:hover { background: #e6bc00; }

/* ───────────────────────────────────────────────
   FOOTER
─────────────────────────────────────────────── */
/* Footer */
footer {
    background: var(--dark-blue);
    color: #ddd;
    padding: 80px 10% 40px;
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto 60px;
    gap: 40px;
}
.footer-logo { max-width: 300px; }
.footer-logo .logo { font-size: 32px; margin-bottom: 20px; color: var(--primary-yellow); }
.footer-logo p { margin-bottom: 20px; font-size: 15px; }
.contact-info p { margin: 12px 0; display: flex; align-items: center; gap: 10px; }
.contact-info i { color: var(--primary-yellow); width: 24px; }
.social-icons { margin-top: 25px; }
.social-icons a { color: white; font-size: 20px; margin-right: 18px; transition: 0.3s; }
.social-icons a:hover { color: var(--primary-yellow); }
.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.footer-links h4 { color: var(--primary-yellow); margin-bottom: 20px; font-size: 18px; }
.footer-links ul { list-style: none; }
.footer-links li { margin: 12px 0; }
.footer-links a { color: #ddd; text-decoration: none; transition: 0.3s; }
.footer-links a:hover { color: var(--primary-yellow); }
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.12);
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 1400px;
    margin: 0 auto;
}
.footer-bottom a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--primary-yellow); }
.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 16px;
}
.footer-bottom-links span { color: rgba(255,255,255,0.3); }

/* ───────────────────────────────────────────────
   RESPONSIVE ADJUSTMENTS
─────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero { padding: 80px 6% 100px; }
    .hero h1 { font-size: 42px; }
    .pricing-section { padding: 80px 6%; }
    .pricing-section h2 { font-size: 34px; }
    .feature-focus, .why-choose-us { 
        flex-direction: column; 
        padding: 80px 6%; 
        gap: 50px; 
    }
    .blogs-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    /* Top bar */
    .top-bar { 
        flex-direction: column; 
        gap: 12px; 
        padding: 14px 5%; 
        font-size: 13px; 
    }

    header { 
        padding: 16px 5%; 
        flex-wrap: wrap; 
        gap: 15px; 
    }
    .logo { font-size: 24px; }
    .logo i { font-size: 28px; }

    nav ul { 
        display: none; 
        flex-direction: column; 
        width: 100%; 
        background: var(--primary-blue); 
        position: absolute; 
        top: 100%; 
        left: 0; 
        padding: 20px 5%; 
        box-shadow: 0 8px 16px rgba(0,0,0,0.2); 
        align-items: center; /* Center items for better mobile view */
        overflow-y: auto; /* Allow scrolling if too many items */
        max-height: 80vh; /* Prevent overflowing the screen */
    }
    nav ul li { margin-left: 0; margin: 10px 0; } /* Fix for hamburger dropdown: proper vertical spacing, no left margin */
    nav ul.show { display: flex; }

    /* Add hamburger button in header.php later */
    .mobile-menu { 
        display: block; 
        font-size: 26px; 
        color: white; 
        cursor: pointer; 
    }

    .hero { padding: 60px 5% 80px; }
    .hero h1 { font-size: 36px; }
    .hero p { font-size: 17px; }

    .domain-search { flex-direction: column; padding: 8px; }
    .domain-search input { padding: 15px 20px; font-size: 16px; }
    .domain-search button { padding: 15px; width: 100%; margin-top: 10px; font-size: 16px; }

    .stats-bar { 
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        padding: 24px 5%;
        margin: -30px auto 0;
        gap: 16px;
    }
    .stat-item { padding: 12px 8px; }
    .stat-item h3 { font-size: 22px; }
    .stat-item p  { font-size: 13px; }

    .pricing-section { padding: 60px 5%; }
    .pricing-section h2 { font-size: 32px; }
    .cards-container { gap: 30px; }

    .card { padding: 35px 25px; }
    .price { font-size: 38px; }
    .btn-card { padding: 14px; font-size: 15px; }

    .feature-focus-content h2,
    .why-choose-us-content h2 { font-size: 32px; }
    .feature-focus-content p,
    .why-choose-us-content p { font-size: 17px; }

    .faq-section { padding: 80px 5%; }
    .faq-section h2 { font-size: 32px; }

    .blogs-section { padding: 70px 5%; }
    .blogs-section h2 { font-size: 32px; }
    .blogs-grid { grid-template-columns: 1fr; }

    .newsletter-section { padding: 70px 5%; }
    .newsletter-box { padding: 40px 25px; }
    .newsletter-box h3 { font-size: 30px; }

    footer { padding: 50px 5% 30px; }
    .footer-content { flex-direction: column; gap: 36px; }
    .footer-logo { max-width: 100%; }
    .footer-links { grid-template-columns: 1fr 1fr; min-width: 0; gap: 24px; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
    .footer-bottom-links { justify-content: center; }
}

@media (max-width: 480px) {
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
    .footer-links { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 30px; }
    .hero p { font-size: 16px; }
    .price { font-size: 34px; }
    .card h3 { font-size: 22px; }
    .btn-card { font-size: 14px; }
    .section h2 { font-size: 28px; }
}

/* Auth Pages Common Styles */
.auth-wrapper {
    background: linear-gradient(135deg, var(--light-grey) 0%, #e8f0fe 100%);
}
.auth-container {
    border-radius: 16px;
    overflow: hidden;
}
.auth-container input[type="text"],
.auth-container input[type="email"],
.auth-container input[type="password"] {
    width: 100%;
    padding: 14px 18px;
    margin: 10px 0 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}
.auth-container .button {
    width: 100%;
    padding: 16px;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}
.auth-container .button:hover {
    background: var(--dark-blue);
}