/* ==========================================================================
   FellaHost Sampled Landing & MauzoSoft Login Interface (Re-organized Widgets)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

body.bg-full-screen-image, body.blank-page {
    background-color: #f4f8fc !important;
    background-image: 
        radial-gradient(#e2e8f0 1px, transparent 1px),
        linear-gradient(180deg, #f0f7ff 0%, #e2f1fe 100%) !important;
    background-size: 24px 24px, 100% 100% !important;
    min-height: 100vh !important;
    font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
    margin: 0;
    padding: 0;
    color: #0f172a;
}

.app-content, .content-wrapper, .content-body {
    padding: 0 !important;
    margin: 0 !important;
}

/* --- Top Info Bar --- */
.fellahost-top-bar {
    background: #f8fafc;
    color: #475569;
    font-size: 0.83rem;
    font-weight: 500;
    padding: 0.55rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.top-bar-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.top-bar-left span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.top-bar-left a {
    color: #0284c7;
    text-decoration: none;
    font-weight: 600;
}

.badge-pill-top {
    background: #e0f2fe;
    color: #0369a1;
    padding: 0.2rem 0.65rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.top-bar-slogan {
    color: #64748b;
    font-size: 0.82rem;
    margin-left: 0.5rem;
}

/* --- Main Header Navbar --- */
.fellahost-main-navbar {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 0.85rem 1.5rem;
    box-shadow: 0 4px 15px -3px rgba(15, 23, 42, 0.03);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.brand-link {
    text-decoration: none;
    font-size: 1.85rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.brand-text-fella {
    color: #0f172a;
}

.brand-text-host {
    color: #22c55e;
    font-style: italic;
}

.nav-links-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.nav-item-link {
    color: #334155;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-item-link:hover {
    color: #0284c7;
}

.navbar-actions-area {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #334155;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.05rem;
    transition: all 0.2s ease;
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    background: #ef4444;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
}

/* --- Hero Section & Grid --- */
.fellahost-hero-wrapper {
    max-width: 1280px;
    margin: 2.5rem auto 4rem auto;
    padding: 0 1.5rem;
}

.fellahost-hero-container {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: start;
}

/* Hero Left Side */
.fellahost-hero-left {
    display: flex;
    flex-direction: column;
}

.hero-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.2rem;
}

.pill-badge {
    background: #e0f2fe;
    color: #0284c7;
    border: 1px solid #bae6fd;
    padding: 0.45rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-headline {
    color: #0f172a;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 1rem 0;
    letter-spacing: -1px;
}

.hero-subtext {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* FellaHost Working Domain Search Widget */
.domain-search-widget-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 1.8rem;
    box-shadow: 0 15px 35px -10px rgba(15, 23, 42, 0.06);
    margin-bottom: 2rem;
}

.domain-search-input-wrapper {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 1.5px solid #cbd5e1;
    border-radius: 14px;
    padding: 6px 8px 6px 16px;
    transition: all 0.25s ease;
    position: relative;
}

.domain-search-input-wrapper:focus-within {
    border-color: #0284c7;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.15);
}

.domain-search-icon {
    color: #0284c7;
    font-size: 1.2rem;
    margin-right: 10px;
}

.domain-search-input {
    border: none !important;
    background: transparent !important;
    outline: none !important;
    box-shadow: none !important;
    font-size: 1rem !important;
    color: #0f172a !important;
    flex-grow: 1;
    padding: 8px 0 !important;
    min-height: 0 !important;
}

.domain-search-submit-btn {
    background: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 12px 22px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
    box-shadow: 0 6px 16px rgba(2, 132, 199, 0.35);
    white-space: nowrap;
}

.domain-search-submit-btn:hover {
    background: linear-gradient(135deg, #0369a1 0%, #1d4ed8 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(2, 132, 199, 0.45);
}

.domain-tld-pricing-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.tld-pill {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #475569;
    font-size: 0.82rem;
    padding: 0.4rem 0.85rem;
    border-radius: 50px;
}

.tld-name {
    color: #0284c7;
    font-weight: 700;
    margin-right: 4px;
}

/* Feature Highlights */
.hero-feature-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.feature-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #e0f2fe;
    color: #0284c7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.feature-text h4 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
}

.feature-text p {
    margin: 0;
    font-size: 0.8rem;
    color: #64748b;
}

/* --- Hero Right Side (Navy Blue Hosting Server Widget Box housing MauzoSoft Login Form) --- */
.fellahost-hero-right {
    display: flex;
    flex-direction: column;
}

.navy-widget-login-box {
    background: linear-gradient(145deg, #021124 0%, #031e3d 50%, #01142b 100%);
    border: 1.5px solid rgba(56, 189, 248, 0.28);
    border-radius: 26px;
    padding: 2.5rem 2.2rem;
    box-shadow: 0 30px 60px -15px rgba(2, 17, 36, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.server-node-badges-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.8rem;
}

.node-badge {
    background: rgba(56, 189, 248, 0.12);
    color: #38bdf8;
    border: 1px solid rgba(56, 189, 248, 0.3);
    padding: 0.4rem 0.85rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.shield-badge {
    background: rgba(34, 197, 94, 0.12);
    color: #4ade80;
    border-color: rgba(34, 197, 94, 0.3);
}

.navy-brand-area {
    text-align: center;
    margin-bottom: 1.8rem;
}

.mauzosoft-navy-logo {
    max-height: 55px;
    margin-bottom: 0.4rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
}

.mauzosoft-navy-title {
    font-size: 1.9rem;
    font-weight: 800;
    margin: 0.3rem 0;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #38bdf8 0%, #818cf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.mauzosoft-navy-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: rgba(56, 189, 248, 0.12);
    border: 1px solid rgba(56, 189, 248, 0.3);
    border-radius: 50px;
    color: #7dd3fc;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Navy Box Form Control Overrides */
.geopos-form-control.navy-input {
    background: rgba(15, 23, 42, 0.75) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    border-radius: 14px;
    padding: 13px 16px 13px 44px;
}

.geopos-form-control.navy-input:focus {
    border-color: #38bdf8 !important;
    background: rgba(15, 23, 42, 0.95) !important;
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.2) !important;
}

.geopos-form-icon.navy-icon {
    color: #94a3b8;
}

.geopos-checkbox-label.navy-checkbox {
    color: #cbd5e1;
}

.geopos-forgot-link.navy-forgot {
    color: #38bdf8;
}

.geopos-btn-primary.navy-btn-login {
    background: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
    border-radius: 14px;
    padding: 14px;
    font-size: 1.05rem;
    font-weight: 600;
    box-shadow: 0 10px 20px -5px rgba(2, 132, 199, 0.5);
}

.geopos-btn-primary.navy-btn-login:hover {
    background: linear-gradient(135deg, #0369a1 0%, #1d4ed8 100%);
    transform: translateY(-2px);
}

.geopos-divider.navy-divider {
    color: #64748b;
}

.geopos-divider.navy-divider::before, .geopos-divider.navy-divider::after {
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

.geopos-btn-customer.navy-btn-customer {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    color: #f1f5f9;
    border-radius: 14px;
}

.geopos-btn-customer.navy-btn-customer:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.navy-box-footer {
    margin-top: 1.8rem;
    text-align: center;
}

.footer-infra-badge {
    background: #0369a1;
    color: #ffffff;
    padding: 0.65rem 1.4rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(3, 105, 161, 0.4);
}

@media (max-width: 991px) {
    .fellahost-hero-container {
        grid-template-columns: 1fr;
    }
    .navbar-links-area {
        display: none;
    }
    .hero-headline {
        font-size: 2.2rem;
    }
    .fellahost-hero-right {
        margin-top: 1.5rem;
    }
}
/* =========================================================================
   LOGIN FORM CENTERING & CROSS-BROWSER FIX (v2.1)
   ========================================================================= */

/* --- Base Form Group (centered, full-width inside navy box) --- */
.navy-login-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
}

.geopos-form-group {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-bottom: 1.1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.geopos-form-control {
    display: block;
    width: 100%;
    padding: 13px 44px 13px 16px;
    font-size: 0.95rem;
    font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.5;
    color: #334155;
    background-color: #f8fafc;
    border: 1.5px solid #cbd5e1;
    border-radius: 14px;
    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.geopos-form-control:focus {
    border-color: #0284c7;
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.15);
    box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.15);
}

.geopos-form-control::-webkit-input-placeholder { color: #94a3b8; }
.geopos-form-control::-moz-placeholder { color: #94a3b8; opacity: 1; }
.geopos-form-control:-ms-input-placeholder { color: #94a3b8; }
.geopos-form-control::placeholder { color: #94a3b8; }

.geopos-form-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 1.1rem;
    color: #94a3b8;
    pointer-events: none;
}

/* Navy Box Form Control Overrides (centered) */
.geopos-form-control.navy-input {
    background: rgba(15, 23, 42, 0.75) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    border-radius: 14px;
    padding: 14px 44px 14px 16px;
    font-size: 0.95rem;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.geopos-form-control.navy-input:focus {
    border-color: #38bdf8 !important;
    background: rgba(15, 23, 42, 0.95) !important;
    -webkit-box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.2) !important;
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.2) !important;
}

.geopos-form-control.navy-input::-webkit-input-placeholder { color: rgba(148, 163, 184, 0.7); }
.geopos-form-control.navy-input::-moz-placeholder { color: rgba(148, 163, 184, 0.7); opacity: 1; }
.geopos-form-control.navy-input:-ms-input-placeholder { color: rgba(148, 163, 184, 0.7); }
.geopos-form-control.navy-input::placeholder { color: rgba(148, 163, 184, 0.7); }

.geopos-form-icon.navy-icon {
    color: #64748b;
}

/* --- Form Actions Row (Remember Me + Forgot Password) --- */
.geopos-form-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    margin-bottom: 1.2rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.geopos-checkbox-label {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: #64748b;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.geopos-checkbox-label.navy-checkbox {
    color: #cbd5e1;
}

.geopos-checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #0284c7;
    cursor: pointer;
    -webkit-appearance: auto;
    -moz-appearance: auto;
    appearance: auto;
}

.geopos-forgot-link {
    color: #0284c7;
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    -webkit-transition: color 0.2s;
    -o-transition: color 0.2s;
    transition: color 0.2s;
}

.geopos-forgot-link:hover {
    color: #0369a1;
    text-decoration: underline;
}

.geopos-forgot-link.navy-forgot {
    color: #38bdf8;
}

.geopos-forgot-link.navy-forgot:hover {
    color: #7dd3fc;
}

/* --- Login Button (full-width, centered) --- */
.geopos-btn-primary {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    font-size: 1.05rem;
    font-weight: 600;
    font-family: 'Outfit', 'Inter', sans-serif;
    color: #ffffff;
    background: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-box-shadow: 0 10px 20px -5px rgba(2, 132, 199, 0.5);
    box-shadow: 0 10px 20px -5px rgba(2, 132, 199, 0.5);
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.geopos-btn-primary:hover {
    background: linear-gradient(135deg, #0369a1 0%, #1d4ed8 100%);
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0 14px 28px -8px rgba(2, 132, 199, 0.6);
    box-shadow: 0 14px 28px -8px rgba(2, 132, 199, 0.6);
}

.geopos-btn-primary:active {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

/* --- Divider --- */
.geopos-divider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    margin: 1.2rem 0;
    text-align: center;
    color: #94a3b8;
    font-size: 0.82rem;
    font-weight: 500;
}

.geopos-divider::before, .geopos-divider::after {
    content: '';
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border-bottom: 1px solid #e2e8f0;
}

.geopos-divider::before { margin-right: 1rem; }
.geopos-divider::after { margin-left: 1rem; }

.geopos-divider span {
    white-space: nowrap;
}

.geopos-divider.navy-divider {
    color: #64748b;
}

.geopos-divider.navy-divider::before,
.geopos-divider.navy-divider::after {
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

/* --- Customer Login Button (full-width, centered) --- */
.geopos-btn-customer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Outfit', 'Inter', sans-serif;
    color: #334155;
    background: #f1f5f9;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    cursor: pointer;
    text-decoration: none;
    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.geopos-btn-customer:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.geopos-btn-customer.navy-btn-customer {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    color: #f1f5f9;
    border-radius: 14px;
}

.geopos-btn-customer.navy-btn-customer:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

/* --- Ensure consistent box-sizing everywhere --- */
.navy-widget-login-box *,
.navy-widget-login-box *::before,
.navy-widget-login-box *::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* --- Responsive fix for small screens --- */
@media (max-width: 576px) {
    .geopos-form-actions {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        gap: 0.6rem;
    }

    .navy-widget-login-box {
        padding: 1.5rem 1.2rem !important;
        border-radius: 18px !important;
    }

    .geopos-form-control.navy-input {
        padding: 12px 40px 12px 14px;
        font-size: 0.9rem;
    }
}

/* --- Password Toggle Icon Hover & Interaction --- */
.geopos-form-icon.toggle-password-btn {
    pointer-events: auto !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    z-index: 5;
}
.geopos-form-icon.toggle-password-btn:hover {
    color: #38bdf8 !important;
    transform: translateY(-50%) scale(1.2) !important;
    text-shadow: 0 0 8px rgba(56, 189, 248, 0.5);
}


/* FellaHost Navbar Logo Image Styling */
.fellahost-navbar-logo {
    max-height: 40px !important;
    width: auto !important;
    object-fit: contain !important;
    transition: transform 0.2s ease, filter 0.2s ease;
}
.brand-link:hover .fellahost-navbar-logo {
    transform: scale(1.05);
    filter: drop-shadow(0 2px 6px rgba(56, 189, 248, 0.3));
}
