/* *****************************************************

    ** Custom Stylesheet **

    Any custom styling you want to apply should be
    defined here.

***************************************************** */

/* Custom CSS for Nexus Cart
 *
 * This block allows you to customize theme colors and styles for the entire Nexus Cart template.
 *
 * To customize colors:
 * - Replace the var() references with your own hex colors or other CSS values.
 * - For example, instead of --primary: #4b5563; use --primary: #your-color;
 * - You can also override any CSS properties here.
 */

html {
    font-size: 14px;
}

:root {
    --white: #fff;

    /* Neutral shades */
    --neutral-50: #fbf9fa;
    --neutral-100: #f4f5f7;
    --neutral-200: #e4e4e7;
    --neutral-300: #d0d5dd;
    --neutral-400: #9ca3af;
    --neutral-500: #6b7280;
    --neutral-600: #4b5563;
    --neutral-700: #374151;
    --neutral-800: #1f2937;
    --neutral-900: #111827;
    --neutral-950: #030712;

    /* Neutral shades */
    /* define own pallet with brand colors */
    --primary-50: var(--neutral-50);
    --primary-100: var(--neutral-100);
    --primary-200: var(--neutral-200);
    --primary-300: var(--neutral-300);
    --primary-400: var(--neutral-400);
    --primary-500: var(--neutral-500);
    --primary-600: var(--neutral-600);
    --primary-700: var(--neutral-700);
    --primary-800: var(--neutral-800);
    --primary-900: var(--neutral-900);
    --primary-950: var(--neutral-900);

    /* Primary colors */
    /* Use shades from comments if `primary` colors use other colors, then neutral */
    --primary: var(--neutral-900);          /* var(--primary-600) */
    --primary-lifted: var(--neutral-800);   /* var(--primary-700) */
    --primary-accented: var(--neutral-700); /* var(--primary-800) */

    /* Secondary colors */
    --secondary: var(--neutral-500);
    --secondary-lifted: var(--neutral-600);
    --secondary-accented: var(--neutral-700);

    /* Success colors */
    --success: #00a63e;
    --success-lifted: #008236;
    --success-accented: #016630;

    /* Info colors */
    --info: #155dfc;
    --info-lifted: #1447e6;
    --info-accented: #193cb8;

    /* Notice colors */
    --notice: #7f22fe;
    --notice-lifted: #7008e7;
    --notice-accented: #5d0ec0;

    /* Warning colors */
    --warning: #f54a00;
    --warning-lifted: #ca3500;
    --warning-accented: #9f2d00;

    /* Error colors */
    --error: #e7000b;
    --error-lifted: #c10007;
    --error-accented: #9f0712;

    /* Grayscale colors */
    --grayscale: var(--neutral-900);
    --grayscale-lifted: var(--neutral-800);
    --grayscale-accented: var(--neutral-700);

    /* Neutral colors */
    --neutral: var(--neutral-500);
    --neutral-lifted: var(--neutral-600);
    --neutral-accented: var(--neutral-700);

    /* Text neutral colors */
    --text-inverted: var(--white);
    --text-muted: var(--neutral-400);
    --text-lifted: var(--neutral-500);
    --text-accented: var(--neutral-600);
    --text: var(--neutral-900);

    /* Border neutral colors */
    --border-muted: var(--neutral-200);
    --border: var(--neutral-300);
    --border-lifted: var(--neutral-400);
    --border-accented: var(--neutral-600);

    /* Background neutral colors */
    --bg: var(--white);
    --bg-muted: var(--neutral-50);
    --bg-lifted: var(--neutral-100);
    --bg-accented: var(--neutral-200);
    --bg-inverted: var(--neutral-900);

    /* Additional colors */
    --yellow-200: #fff085;
    --yellow-300: #ffdf20;
    --teal-300: #46edd5;
    --teal-400: #00d5be;
    --emerald-300: #5ee9b5;
    --pink-400: #fb64b6;

    /* Additional custom properties */
    /* Font sizes */
    --text-xs: 0.625rem;
    --text-sm: 0.75rem;
    --text-md: 0.875rem;
    --text-lg: 1rem;

    /* Spacing */
    --outline-sm: 1px;
    --outline-md: 2px;
    --outline-lg: 3px;

    /* Rounding */
    --rounding-sm: 0.25rem;
    --rounding-md: 0.5rem;
    --rounding-lg: 0.75rem;

    /* Other */
    --letter-spacing: 0em;
    --disabled-opacity: 25%;
}

/* =========================================================
   MyPixelHosting - Global Branding Overrides
   ========================================================= */

:root {
    --mph-blue: #0f4c81;
    --mph-blue-dark: #0b355a;
    --mph-red: #e31b23;
    --mph-text: #1f2937;
    --mph-muted: #6b7280;
    --mph-border: #e5e7eb;
    --mph-bg: #f6f8fb;
    --mph-card: #ffffff;

    --primary: var(--mph-blue);
    --primary-lifted: #0d426f;
    --primary-accented: var(--mph-blue-dark);

    --info: var(--mph-blue);
    --info-lifted: #0d426f;
    --info-accented: var(--mph-blue-dark);

    --bg-muted: var(--mph-bg);
    --border: var(--mph-border);
    --text: var(--mph-text);
    --text-accented: var(--mph-muted);

    --rounding-sm: 0.45rem;
    --rounding-md: 0.75rem;
    --rounding-lg: 1rem;
}

html,
body {
    background: var(--mph-bg);
    color: var(--mph-text);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;
}

/* Links */
a {
    color: var(--mph-blue);
}

a:hover,
a:focus {
    color: var(--mph-blue-dark);
    text-decoration: none;
}

/* Buttons */
.btn {
    border-radius: 10px;
    font-weight: 600;
    padding: 10px 18px;
    transition: all .2s ease;
}

.btn-primary {
    background: var(--mph-blue);
    border-color: var(--mph-blue);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--mph-blue-dark);
    border-color: var(--mph-blue-dark);
}

.btn-success {
    border-radius: 10px;
}

/* Cards / panels */
.card,
.panel,
.list-group,
.domain-pricing,
.client-home-panels .panel {
    border-radius: 14px;
    border: 1px solid var(--mph-border);
    box-shadow: 0 8px 24px rgba(15, 76, 129, 0.06);
}

/* Forms */
.form-control,
.custom-select,
select,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
textarea {
    border-radius: 10px;
    border-color: #d9dee7;
    min-height: 44px;
    box-shadow: none;
}

.form-control:focus,
.custom-select:focus,
select:focus,
input:focus,
textarea:focus {
    border-color: var(--mph-blue);
    box-shadow: 0 0 0 3px rgba(15, 76, 129, 0.10);
}

/* Header */
header.header {
    background: #ffffff;
    border-bottom: 1px solid var(--mph-border);
    box-shadow: 0 4px 18px rgba(17, 24, 39, 0.04);
}

/* Main navigation */
.navbar,
.navbar-main {
    background: #ffffff;
}

.navbar-main .navbar-nav > li > a,
.navbar-main .navbar-nav > .nav-item > .nav-link {
    color: var(--mph-text);
    font-weight: 600;
}

.navbar-main .navbar-nav > li > a:hover,
.navbar-main .navbar-nav > .nav-item > .nav-link:hover {
    color: var(--mph-blue);
}

/* Main content */
.main-content,
#main-body {
    background: var(--mph-bg);
}

/* Footer */
footer.footer,
.footer {
    background: #111827;
    color: #cbd5e1;
}

footer.footer a,
.footer a {
    color: #ffffff;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: #111827;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Tables */
.table {
    background: #ffffff;
}

.table thead th {
    border-top: 0;
    font-weight: 700;
}

/* Alerts */
.alert {
    border-radius: 12px;
}

/* Breadcrumb / subnav areas */
.breadcrumb,
.master-breadcrumb {
    background: transparent;
}

/* Remove overly harsh legacy shadows/borders where possible */
.panel-default,
.card,
.list-group-item {
    border-color: var(--mph-border);
}

/* =========================================================
   MyPixelHosting - Homepage
   ========================================================= */

.mph-home-section {
    padding: 65px 0;
}

.mph-services-section {
    padding-top: 55px;
}

.mph-section-heading {
    max-width: 720px;
    margin: 0 auto 42px;
    text-align: center;
}

.mph-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--mph-blue);
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.mph-section-heading h2,
.mph-account-intro h2 {
    margin: 0 0 14px;
    color: #111827;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 750;
    letter-spacing: -.035em;
}

.mph-section-heading p,
.mph-account-intro p {
    margin: 0;
    color: #6b7280;
    font-size: 16px;
    line-height: 1.7;
}


/* ==============================
   Main Service Cards
   ============================== */

.mph-service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 315px;
    padding: 34px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    box-shadow: 0 12px 38px rgba(17, 24, 39, .06);
    color: #111827;
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.mph-service-card::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -70px;
    top: -70px;
    border-radius: 50%;
    background: rgba(15, 76, 129, .055);
    transition: transform .3s ease;
}

.mph-service-card:hover {
    color: #111827;
    text-decoration: none;
    border-color: rgba(15, 76, 129, .25);
    box-shadow: 0 22px 55px rgba(17, 24, 39, .11);
    transform: translateY(-6px);
}

.mph-service-card:hover::after {
    transform: scale(1.35);
}

.mph-service-icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 30px;
    border-radius: 16px;
    background: #eef5fb;
    color: var(--mph-blue);
    font-size: 24px;
}

.mph-service-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.mph-card-label {
    margin-bottom: 8px;
    color: #7b8492;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.mph-service-card h3 {
    margin: 0 0 13px;
    color: #111827;
    font-size: 23px;
    line-height: 1.25;
    letter-spacing: -.025em;
}

.mph-service-card p {
    margin-bottom: 28px;
    color: #687180;
    font-size: 14px;
    line-height: 1.7;
}

.mph-card-link {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: var(--mph-blue);
    font-weight: 700;
}

.mph-card-link i {
    transition: transform .2s ease;
}

.mph-service-card:hover .mph-card-link i {
    transform: translateX(5px);
}


/* Slight variations */

.mph-card-domain .mph-service-icon {
    background: #eef8f4;
    color: #14805e;
}

.mph-card-transfer .mph-service-icon {
    background: #fff4f2;
    color: #c43e3e;
}


/* ==============================
   Quick Access
   ============================== */

.mph-help-section {
    border-top: 1px solid #edf0f4;
}

.mph-quick-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 165px;
    padding: 24px 15px;
    background: #fff;
    border: 1px solid #e6e9ee;
    border-radius: 16px;
    color: #1f2937;
    text-align: center;
    box-shadow: 0 7px 22px rgba(17, 24, 39, .035);
    transition: all .22s ease;
}

.mph-quick-card:hover {
    color: var(--mph-blue);
    text-decoration: none;
    border-color: rgba(15, 76, 129, .22);
    box-shadow: 0 14px 32px rgba(17, 24, 39, .08);
    transform: translateY(-4px);
}

.mph-quick-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 14px;
    border-radius: 13px;
    background: #f0f5fa;
    color: var(--mph-blue);
    font-size: 19px;
}

.mph-quick-card strong {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
    font-weight: 700;
}

.mph-quick-card small {
    color: #9097a3;
    font-size: 11px;
}

.mph-quick-support .mph-quick-icon {
    background: #eef8f4;
    color: #14805e;
}


/* ==============================
   Account Area
   ============================== */

.mph-account-section {
    padding-top: 35px;
    padding-bottom: 75px;
}

.mph-account-shell {
    padding: 45px;
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 0%, rgba(39, 105, 161, .25), transparent 32%),
        linear-gradient(135deg, #101a27 0%, #152638 100%);
    border-radius: 24px;
    box-shadow: 0 25px 65px rgba(17, 24, 39, .17);
}

.mph-account-intro {
    max-width: 670px;
    margin-bottom: 35px;
}

.mph-account-intro .mph-eyebrow {
    color: #70a9d8;
}

.mph-account-intro h2 {
    color: #fff;
}

.mph-account-intro p {
    color: #b6c1cd;
}

.mph-account-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 125px;
    padding: 22px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 15px;
    color: #fff;
    backdrop-filter: blur(7px);
    transition: all .2s ease;
}

.mph-account-card:hover {
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, .13);
    border-color: rgba(255, 255, 255, .2);
    transform: translateY(-3px);
}

.mph-account-card i {
    margin-bottom: 22px;
    color: #7eb4df;
    font-size: 22px;
}

.mph-account-card span {
    font-weight: 650;
}


/* ==============================
   Responsive
   ============================== */

@media (max-width: 767.98px) {

    .mph-home-section {
        padding: 45px 0;
    }

    .mph-section-heading h2,
    .mph-account-intro h2 {
        font-size: 27px;
    }

    .mph-section-heading {
        margin-bottom: 30px;
    }

    .mph-service-card {
        min-height: 270px;
        padding: 27px;
    }

    .mph-account-shell {
        padding: 30px 22px;
        border-radius: 18px;
    }

    .mph-account-card {
        min-height: 110px;
    }
}

/* MyPixelHosting - Header Logo */
header.header .navbar-brand .logo-img {
    width: 190px !important;
    height: auto !important;
    max-width: 190px !important;
    max-height: none !important;
}

/* =========================================================
   MyPixelHosting - Custom Footer
   ========================================================= */

.mph-footer {
    margin-top: 0;
    padding: 70px 0 25px;
    background: #0d1725 !important;
    color: #aeb9c6;
}

.mph-footer-main {
    padding-bottom: 50px;
}


/* Brand / Logo
   --------------------------------------------------------- */

.mph-footer-brand {
    display: inline-block;
    margin-bottom: 20px;
}

.mph-footer-brand img {
    width: 130px !important;
    height: auto !important;
    max-height: 66px !important;
    max-width: 100% !important;
    object-fit: contain;
}

.mph-footer-description {
    max-width: 350px;
    margin: 0 0 22px;
    color: #9ba8b6;
    font-size: 14px;
    line-height: 1.75;
}


/* Footer Titles
   --------------------------------------------------------- */

.mph-footer h4 {
    margin: 4px 0 20px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 750;
    letter-spacing: .04em;
}


/* Links
   --------------------------------------------------------- */

.mph-footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mph-footer-links li {
    margin-bottom: 10px;
}

.mph-footer-links a {
    color: #9eabb9 !important;
    font-size: 13px;
    text-decoration: none;
    transition: color .2s ease;
}

.mph-footer-links a:hover {
    color: #ffffff !important;
    text-decoration: none;
}


/* Social Accounts
   --------------------------------------------------------- */

.mph-footer-social {
    margin-top: 18px;
}

.mph-footer-social ul {
    margin: 0;
    padding: 0;
}

.mph-footer-social a {
    color: #9eabb9 !important;
}

.mph-footer-social a:hover {
    color: #ffffff !important;
}


/* Bottom Bar
   --------------------------------------------------------- */

.mph-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .09);
}

.mph-footer-copyright {
    margin: 0;
    color: #788797;
    font-size: 12px;
}


/* Language / Currency
   --------------------------------------------------------- */

.mph-language-btn {
    padding: 7px 12px !important;
    background: rgba(255, 255, 255, .07) !important;
    border: 1px solid rgba(255, 255, 255, .08) !important;
    border-radius: 8px !important;
    color: #d3dbe4 !important;
    font-size: 12px !important;
}

.mph-language-btn:hover,
.mph-language-btn:focus {
    background: rgba(255, 255, 255, .12) !important;
    color: #ffffff !important;
}


/* Responsive
   --------------------------------------------------------- */

@media (max-width: 767.98px) {

    .mph-footer {
        padding-top: 50px;
    }

    .mph-footer-main {
        padding-bottom: 30px;
    }

    .mph-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

.mph-footer-brand img {
    width: 105px !important;
    max-height: 50px !important;
}

    .mph-footer-description {
        max-width: 100%;
    }
}

/* =========================================================
   MyPixelHosting - Domain Hero
   ========================================================= */

.mph-domain-hero {
    position: relative;
    overflow: hidden;
    padding: 78px 0 65px;
    background:
        radial-gradient(circle at 80% 10%, rgba(15, 76, 129, .12), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    border-bottom: 1px solid #e9edf2;
}

.mph-domain-hero::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    left: -180px;
    bottom: -220px;
    border-radius: 50%;
    background: rgba(227, 27, 35, .035);
}

.mph-domain-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 920px;
    margin: 0 auto;
}

.mph-domain-copy {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.mph-domain-copy h1 {
    margin: 0 0 16px;
    color: #111827;
    font-size: 42px;
    line-height: 1.1;
    font-weight: 780;
    letter-spacing: -.04em;
}

.mph-domain-copy p {
    max-width: 650px;
    margin: 0 auto;
    color: #687180;
    font-size: 17px;
    line-height: 1.7;
}


/* Search Shell
   --------------------------------------------------------- */

.mph-domain-search-shell {
    max-width: 820px;
    margin: 0 auto;
}

.mph-domain-search-row {
    display: flex;
    align-items: stretch;
    gap: 12px;
    padding: 9px;
    background: #ffffff;
    border: 1px solid #dfe5eb;
    border-radius: 16px;
    box-shadow: 0 18px 50px rgba(17, 24, 39, .09);
}

.mph-domain-input-wrap {
    position: relative;
    display: flex;
    flex: 1;
    align-items: center;
}

.mph-domain-input-wrap i {
    position: absolute;
    left: 18px;
    z-index: 2;
    color: #8a95a3;
    font-size: 17px;
}

.mph-domain-input-wrap .form-control {
    width: 100%;
    height: 54px;
    padding: 0 18px 0 48px;
    background: transparent;
    border: 0 !important;
    border-radius: 11px;
    color: #1f2937;
    font-size: 16px;
    box-shadow: none !important;
}

.mph-domain-input-wrap .form-control::placeholder {
    color: #9aa3af;
}

.mph-domain-input-wrap .form-control:focus {
    background: #f8fafc;
}


/* Search Button
   --------------------------------------------------------- */

.mph-domain-search-btn {
    min-width: 160px;
    height: 54px;
    padding: 0 25px !important;
    background: var(--mph-blue) !important;
    border: 1px solid var(--mph-blue) !important;
    border-radius: 11px !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    box-shadow: none !important;
}

.mph-domain-search-btn:hover,
.mph-domain-search-btn:focus {
    background: var(--mph-blue-dark) !important;
    border-color: var(--mph-blue-dark) !important;
}


/* Transfer
   --------------------------------------------------------- */

.mph-domain-actions {
    margin-top: 22px;
    text-align: center;
}

.mph-transfer-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    background: none;
    border: 0;
    color: #7b8491;
    font-size: 13px;
    cursor: pointer;
}

.mph-transfer-link strong {
    color: var(--mph-blue);
    font-weight: 700;
}

.mph-transfer-link i {
    margin-left: 3px;
    color: var(--mph-blue);
    transition: transform .2s ease;
}

.mph-transfer-link:hover i {
    transform: translateX(4px);
}


/* Featured Domain Pricing
   --------------------------------------------------------- */

.mph-domain-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 690px;
    margin: 32px auto 0;
    padding-top: 24px;
    border-top: 1px solid #e5e9ee;
}

.mph-tld-item {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 20px;
    border-right: 1px solid #e0e5ea;
}

.mph-tld-item:first-child {
    padding-left: 0;
}

.mph-tld-name {
    color: #293440;
    font-size: 14px;
    font-weight: 800;
}

.mph-tld-price {
    color: #7c8794;
    font-size: 12px;
    font-weight: 600;
}

.mph-domain-pricing-link {
    margin-left: 20px;
    color: var(--mph-blue);
    font-size: 12px;
    font-weight: 700;
}

.mph-domain-pricing-link i {
    margin-left: 4px;
    transition: transform .2s ease;
}

.mph-domain-pricing-link:hover {
    color: var(--mph-blue-dark);
    text-decoration: none;
}

.mph-domain-pricing-link:hover i {
    transform: translateX(4px);
}


/* Advanced Search
   --------------------------------------------------------- */

.mph-domain-advanced {
    padding: 22px;
    background: #ffffff;
    border: 1px solid #dfe5eb;
    border-radius: 16px;
    box-shadow: 0 18px 50px rgba(17, 24, 39, .09);
}

.mph-domain-advanced textarea {
    width: 100%;
    min-height: 105px;
    margin-bottom: 15px;
}

.mph-domain-safe-search {
    margin-top: 15px;
    color: #697382;
    font-size: 13px;
}


/* CAPTCHA spacing
   --------------------------------------------------------- */

#frmDomainHomepage .captcha-container {
    max-width: 820px;
    margin: 18px auto 0;
}


/* Responsive
   --------------------------------------------------------- */

@media (max-width: 767.98px) {

    .mph-domain-hero {
        padding: 55px 0 45px;
    }

    .mph-domain-copy h1 {
        font-size: 32px;
    }

    .mph-domain-copy p {
        font-size: 15px;
    }

    .mph-domain-search-row {
        flex-direction: column;
        padding: 8px;
    }

    .mph-domain-search-btn {
        width: 100%;
    }

    .mph-domain-pricing {
        flex-wrap: wrap;
        gap: 14px;
    }

    .mph-tld-item {
        padding: 0 12px;
    }

    .mph-domain-pricing-link {
        width: 100%;
        margin: 8px 0 0;
        text-align: center;
    }
}

/* =========================================================
   MyPixelHosting Domain Search - Advanced WHMCS Fix
   ========================================================= */

.mph-domain-input-wrap textarea {
    display: block !important;
    width: 100% !important;
    height: 58px !important;
    min-height: 58px !important;
    max-height: 58px !important;
    margin: 0 !important;
    padding: 18px 20px 18px 52px !important;

    border: 0 !important;
    outline: 0 !important;
    resize: none !important;

    background: transparent !important;
    box-shadow: none !important;

    color: #172033 !important;
    font-family: inherit !important;
    font-size: 16px !important;
    line-height: 22px !important;

    overflow: hidden !important;
}

.mph-domain-input-wrap textarea::placeholder {
    color: #9aa3af !important;
    opacity: 1;
}

.mph-domain-input-wrap textarea:focus {
    background: #f8fafc !important;
}

.mph-domain-search-row {
    min-height: 76px;
    align-items: center;
}

.mph-domain-input-wrap {
    min-width: 0;
}

.mph-domain-search-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-width: 185px;
    height: 58px !important;

    margin: 0 !important;
}

.mph-domain-search-btn i {
    font-size: 12px;
    transition: transform .2s ease;
}

.mph-domain-search-btn:hover i {
    transform: translateX(3px);
}

/* Transfer should look like a link, never a browser button */
button.mph-transfer-link {
    appearance: none !important;
    -webkit-appearance: none !important;

    background: transparent !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;

    font-family: inherit;
}

/* Mobile */
@media (max-width: 767.98px) {

    .mph-domain-search-row {
        min-height: auto;
    }

    .mph-domain-input-wrap textarea {
        height: 58px !important;
        min-height: 58px !important;
    }

    .mph-domain-search-btn {
        width: 100%;
        min-width: 0;
    }
}

/* =========================================================
   MyPixelHosting - Domain Search Final Polish
   ========================================================= */

.mph-domain-search-shell {
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
}

.mph-domain-search-row {
    display: flex !important;
    width: 100%;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: #fff;
    border: 1px solid #dde3ea;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(17, 24, 39, .08);
}

.mph-domain-input-wrap {
    position: relative;
    display: flex !important;
    flex: 1 1 auto !important;
    width: auto !important;
    min-width: 0 !important;
    align-items: center;
}

.mph-domain-input-wrap textarea,
.mph-domain-input-wrap input {
    flex: 1 1 auto !important;
    width: 100% !important;
    min-width: 0 !important;
    height: 60px !important;
    min-height: 60px !important;
    max-height: 60px !important;
    margin: 0 !important;
    padding: 18px 22px 18px 50px !important;
    border: 0 !important;
    border-radius: 12px !important;
    background: transparent !important;
    box-shadow: none !important;
    resize: none !important;
    font-size: 17px !important;
    line-height: 24px !important;
}

.mph-domain-input-wrap i {
    left: 18px !important;
    top: 50% !important;
    transform: translateY(-50%);
}

.mph-domain-search-btn {
    flex: 0 0 auto !important;
    min-width: 190px !important;
    height: 60px !important;
    padding: 0 24px !important;
    border-radius: 12px !important;
    font-size: 14px !important;
}


/* Transfer link/button */

.mph-domain-actions {
    margin-top: 18px;
    text-align: center;
}

button.mph-transfer-link {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 7px;

    padding: 10px 16px !important;

    background: #ffffff !important;
    border: 1px solid #e1e6ec !important;
    border-radius: 999px !important;

    color: #6f7885 !important;
    font-size: 13px !important;
    font-weight: 500 !important;

    box-shadow: 0 5px 16px rgba(17, 24, 39, .04) !important;
    cursor: pointer;

    transition:
        border-color .2s ease,
        background .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

button.mph-transfer-link strong {
    color: var(--mph-blue) !important;
    font-weight: 700 !important;
}

button.mph-transfer-link i {
    color: var(--mph-blue) !important;
    font-size: 11px;
    transition: transform .2s ease;
}

button.mph-transfer-link:hover {
    background: #f9fbfd !important;
    border-color: rgba(15, 76, 129, .25) !important;
    box-shadow: 0 8px 20px rgba(17, 24, 39, .07) !important;
    transform: translateY(-1px);
}

button.mph-transfer-link:hover i {
    transform: translateX(3px);
}


/* Responsive */

@media (max-width: 767.98px) {

    .mph-domain-search-row {
        flex-direction: column !important;
    }

    .mph-domain-input-wrap {
        width: 100% !important;
    }

    .mph-domain-search-btn {
        width: 100% !important;
        min-width: 0 !important;
    }

    button.mph-transfer-link {
        width: 100%;
        border-radius: 12px !important;
        line-height: 1.4;
    }
}