@font-face {
    font-family: 'Product Sans';
    src: url('../fonts/ProductSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Product Sans';
    src: url('../fonts/ProductSans-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

:root {
    /* MilesWeb-inspired Theme */
    --primary-color: #146ef5; /* Vibrant Blue */
    --primary-hover: #0d5bcc;
    --secondary-color: #0f172a; /* Dark Slate */
    --background-color: #ffffff; /* Pure White */
    --surface-color: #f8faff; /* Soft tinted blue */
    --text-color: #334155;
    --text-muted: #64748b;
    --danger-color: #ff008c; /* MilesWeb Pink/Red for sales */
    --success-color: #16a34a; /* MilesWeb Green */
    --border-color: #e2e8f0;
    
    /* Soft shapes */
    --radius: 12px; /* Soft rounded corners */
    --shadow: 0 4px 14px rgba(20,110,245,0.08);
    --shadow-hover: 0 12px 30px rgba(20,110,245,0.15);
    
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Product Sans', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-hover);
}

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--surface-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Navigation */
.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-item {
    position: relative;
    padding: 25px 0;
    font-weight: bold;
    color: var(--secondary-color);
    cursor: pointer;
}

.nav-item:hover {
    color: var(--primary-color);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--surface-color);
    min-width: 200px;
    box-shadow: var(--shadow-hover);
    border-radius: var(--radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    padding: 10px 0;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 10px 20px;
    color: var(--text-color);
    font-weight: normal;
    display: block;
}

.dropdown-item:hover {
    background: var(--background-color);
    color: var(--primary-color);
}

/* Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-icon {
    position: relative;
    font-size: 20px;
    color: var(--secondary-color);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--danger-color);
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
}

/* Buttons */
.btn {
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: bold;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* Hero Banner */
.hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.domain-search {
    display: flex;
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius);
    padding: 10px;
    box-shadow: var(--shadow-hover);
}

.domain-search input {
    flex: 1;
    border: none;
    padding: 15px 20px;
    font-size: 18px;
    outline: none;
    border-radius: var(--radius);
    font-family: inherit;
}

.domain-search .btn {
    font-size: 16px;
    padding: 0 40px;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

/* Pricing Cards */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--surface-color);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.card-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.card-price {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.card-price span {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: normal;
}

.card-features {
    text-align: left;
    margin-bottom: 30px;
}

.card-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
}

.card-features li:last-child {
    border-bottom: none;
}

/* Form */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.1);
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer h3 {
    margin-bottom: 20px;
    font-size: 18px;
}

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

.footer ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none; /* In real app, add hamburger menu */
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .domain-search {
        flex-direction: column;
        gap: 10px;
        background: transparent;
        box-shadow: none;
    }
    
    .domain-search input {
        width: 100%;
    }
}

/* --------------------------------------
   APP LAYOUT (Horizontal Admin & Customer Portals)
   -------------------------------------- */
.app-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f8fafc;
}

.admin-topnav {
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    position: sticky;
    top: 0;
    z-index: 100;
}

.admin-topnav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    height: 70px;
}

.admin-logo {
    font-size: 20px;
    font-weight: 800;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.admin-nav {
    display: flex;
    gap: 15px;
    height: 100%;
}

.admin-nav-item {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.admin-nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 15px;
    color: var(--text-color);
    font-weight: 600;
    font-size: 14px;
    height: 100%;
    transition: color 0.2s;
}

.admin-nav-link svg {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}

.admin-nav-link .caret {
    width: 14px;
    height: 14px;
    opacity: 0.5;
    margin-left: 2px;
}

.admin-nav-item:hover .admin-nav-link {
    color: var(--primary-color);
}

.admin-nav-item:hover .admin-nav-link svg {
    opacity: 1;
}

/* Horizontal Dropdown Menu */
.admin-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 101;
}

.admin-nav-item:hover .admin-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.admin-dropdown a {
    display: block;
    padding: 10px 20px;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

.admin-dropdown a:hover {
    background-color: #f8fafc;
    color: var(--primary-color);
}

.admin-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.app-main {
    flex: 1;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 40px 24px;
}

.app-page-title {
    font-size: 28px;
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* App Components */
.app-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
    padding: 24px;
    border: 1px solid var(--border-color);
    margin-bottom: 24px;
}

.app-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.app-card-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--secondary-color);
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 30px;
}

.metric-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
}

.metric-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.metric-icon.blue { background: #eff6ff; color: #2563eb; }
.metric-icon.green { background: #f0fdf4; color: #16a34a; }
.metric-icon.amber { background: #fffbeb; color: #d97706; }
.metric-icon.purple { background: #faf5ff; color: #9333ea; }

.metric-info h4 {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-info .value {
    font-size: 32px;
    font-weight: bold;
    color: var(--secondary-color);
    line-height: 1.2;
}

/* Premium Tables */
.app-table-wrapper {
    overflow-x: auto;
    margin: -24px;
    margin-top: 0;
}

.app-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.app-table th {
    padding: 16px 24px;
    background-color: #f8fafc;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border-color);
    white-space: nowrap;
}

.app-table td {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
    color: var(--text-color);
}

.app-table tbody tr {
    transition: background-color 0.2s ease;
}

.app-table tbody tr:hover {
    background-color: #f8fafc;
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
}

.badge-success { background: #dcfce7; color: #166534; }
.badge-warning { background: #fef9c3; color: #854d0e; }
.badge-danger { background: #fee2e2; color: #991b1b; }
.badge-primary { background: #e0e7ff; color: #3730a3; }

/* Responsive App Layout */
@media (max-width: 768px) {
    .app-sidebar { transform: translateX(-100%); }
    .app-main { margin-left: 0; }
}

/* --------------------------------------
   PREMIUM CUSTOMER PORTAL
   -------------------------------------- */
.premium-portal {
    background-color: #f4f7f6;
    min-height: 100vh;
}

/* Glassmorphism Header */
.premium-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.premium-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.premium-nav {
    display: flex;
    gap: 30px;
}

.premium-nav a {
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 24px 0;
}

.premium-nav a:hover {
    color: var(--primary-color);
}

.premium-nav a.active {
    color: var(--primary-color);
}

.premium-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px 3px 0 0;
}

/* Vibrant Hero Banner */
.premium-hero {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    padding: 60px 24px 100px;
    color: white;
    text-align: center;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    margin-bottom: -60px;
}

.premium-hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.premium-hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* Main Layout Grid */
.premium-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 60px;
}

/* Animations */
@keyframes slideUpFade {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.animate-slide-up {
    animation: slideUpFade 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0; /* start hidden */
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* Premium Cards */
.premium-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 40px -10px rgba(79, 70, 229, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
}

.premium-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -10px rgba(79, 70, 229, 0.15);
}

.premium-card-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.premium-stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.premium-stat-label {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.premium-stat-value {
    font-size: 32px;
    font-weight: bold;
    color: var(--secondary-color);
}

/* Dashboard Grid Layout */
.premium-dashboard-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

@media (max-width: 900px) {
    .premium-dashboard-grid {
        grid-template-columns: 1fr;
    }
    .premium-nav {
        display: none;
    }
}

/* --------------------------------------
   SPLIT AUTHENTICATION PAGE
   -------------------------------------- */
.auth-split {
    display: flex;
    min-height: 100vh;
    font-family: 'Product Sans', sans-serif;
    background: white;
}

.auth-left {
    flex: 1;
    max-width: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: white;
    z-index: 10;
}

.auth-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
}

@media (max-width: 900px) {
    .auth-right { display: none; }
    .auth-left { max-width: 100%; }
}

.shape {
    position: absolute;
    z-index: 0;
}

.auth-graphic-text {
    position: relative;
    z-index: 10;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #1a202c;
    letter-spacing: -1px;
}

.auth-form-container {
    width: 100%;
    max-width: 380px;
}

.auth-logo-icon {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #a855f7 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
    display: inline-block;
    letter-spacing: -2px;
}

.auth-title {
    font-size: 28px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 30px;
}

.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: white;
    color: #4a5568;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s;
    gap: 12px;
}

.btn-google:hover {
    background: #f8fafc;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #a0aec0;
    font-size: 13px;
    margin: 24px 0;
}

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

.auth-divider::before { margin-right: 15px; }
.auth-divider::after { margin-left: 15px; }

.auth-input-group {
    margin-bottom: 16px;
    position: relative;
}

.auth-input {
    width: 100%;
    padding: 14px 16px;
    background: #f7fafc;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 15px;
    color: #2d3748;
    font-family: inherit;
    transition: all 0.2s;
}

.auth-input:focus {
    outline: none;
    background: white;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.auth-input::placeholder {
    color: #a0aec0;
}

.auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    font-size: 14px;
}

.auth-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4a5568;
    cursor: pointer;
}

.auth-checkbox input {
    width: 16px;
    height: 16px;
    accent-color: #8b5cf6;
    cursor: pointer;
}

.auth-forgot {
    color: #3b82f6;
    font-weight: 500;
}

.auth-forgot:hover {
    text-decoration: underline;
}

.btn-auth-submit {
    width: 100%;
    padding: 14px;
    background: #8b5cf6;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.btn-auth-submit:hover {
    background: #7c3aed;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
}

.auth-signup-text {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: #4a5568;
}

.auth-signup-text a {
    color: #3b82f6;
    font-weight: 500;
}

.auth-signup-text a:hover {
    text-decoration: underline;
}

/* Right Side Graphics */
.auth-graphic-text {
    position: relative;
    z-index: 10;
    font-size: 48px;
    font-weight: bold;
    color: #1a202c;
    text-align: center;
    line-height: 1.2;
    max-width: 400px;
}

/* --------------------------------------
   ADMIN AUTHENTICATION PAGE
   -------------------------------------- */
.admin-auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fcfcfd;
    font-family: 'Product Sans', sans-serif;
}

.admin-auth-card {
    background: white;
    width: 100%;
    max-width: 440px;
    border-radius: 20px;
    padding: 40px 48px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

/* Grid background on top of card */
.admin-auth-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 180px;
    background-image: 
      linear-gradient(rgba(59, 130, 246, 0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(59, 130, 246, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: center top;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1), transparent);
    z-index: 0;
}

.admin-auth-content {
    position: relative;
    z-index: 10;
}

.admin-auth-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.admin-auth-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.admin-auth-subtitle {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

.admin-auth-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.admin-auth-social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #eaeaea;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    cursor: pointer;
    transition: 0.2s;
}

.admin-auth-social-btn:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
}

.admin-auth-divider {
    text-align: center;
    position: relative;
    margin: 20px 0 25px;
    color: #a0aec0;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.admin-auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    border-top: 1px solid #eaeaea;
    z-index: -1;
}

.admin-auth-divider span {
    background: white;
    padding: 0 10px;
}

.admin-auth-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.admin-auth-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 20px;
    transition: 0.2s;
}

.admin-auth-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.admin-auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    font-size: 13px;
}

.btn-admin-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(180deg, #333333 0%, #1a1a1a 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.1s, box-shadow 0.1s;
    font-family: inherit;
}

.btn-admin-submit:active {
    transform: translateY(1px);
    box-shadow: 0 2px 3px rgba(0,0,0,0.1);
}
