/* ================= ADMIN BACKGROUND ================= */
/* ===== REMOVE DEFAULT WP WHITE BACKGROUND ===== */
/* ===== REMOVE ALL WP WHITE BACKGROUND ===== */

/* ============================= */
/* FULL SCREEN ADMIN OVERRIDE   */
/* ============================= */

/* Remove default WP spacing */
html.wp-toolbar {
    padding-top: 0 !important;
}

#wpcontent {
    margin-left: 160px !important; /* default sidebar width */
    padding: 0 !important;
}

#wpbody-content {
    padding-bottom: 0 !important;
}

.wrap {
    margin: 0 !important;
    padding: 0 !important;
}

/* Remove WP footer */
#wpfooter {
    display: none !important;
}

/* Make body full height */
body.wp-admin {
    background: #0b1220 !important;
    min-height: 100vh;
}

/* Make main area full height */
#wpbody,
#wpbody-content {
    min-height: 100vh !important;
}

/* ===== YOUR FULL SCREEN BACKGROUND ===== */
.hashtechy-admin-wrapper {
    position: relative;
    min-height: calc(100vh - 32px);
    height: calc(100vh - 32px);
    padding: 60px 20px;
    background:
    radial-gradient(circle at 15% 20%, rgba(0,255,170,0.12), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(0,200,255,0.10), transparent 40%),
    #0b1220;
    overflow: hidden;
}

/* Subtle grid */
.hashtechy-admin-wrapper:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

/* Center card vertically + horizontally */
.hashtechy-admin-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Card */
.hashtechy-card {
    position: relative;
    width: 100%;
    max-width: 650px;
    margin: auto;
    background: rgba(15,23,42,0.75);
    backdrop-filter: blur(14px);
    border-radius: 20px;
    padding: 45px;
    color: #fff;
    box-shadow: 0 0 60px rgba(0,255,170,0.15);
    border: 1px solid rgba(255,255,255,0.06);
}

/* ===== Success ===== */

.hashtechy-success {
    margin-bottom: 20px;
}

/* ===== TITLE ===== */
.hashtechy-card h1 {
    color: #fff;
    font-size: 26px;
    margin: 1em 0;
}

.subtitle {
    margin-bottom: 30px;
    color: #94a3b8;
    font-size: 14px;
}

/* ===== ANALYTICS ===== */
.analytics-box {
    background: linear-gradient(135deg,#00ffaa,#00c8ff);
    padding: 18px 22px;
    border-radius: 14px;
    margin-bottom: 30px;
    color: #000;
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 600;
}

/* ===== FORM ===== */
.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display:block;
    margin-bottom:6px;
    font-weight:500;
    font-size:14px;
}

.form-group input[type="text"],
.form-group input[type="url"] {
    width:100%;
    padding:12px 14px;
    border-radius:12px;
    border:1px solid rgba(255,255,255,0.12);
    background:#0f172a;
    color:#fff;
    font-size:14px;
    transition:0.3s;
}

.form-group input:focus {
    outline:none;
    border-color:#00ffaa;
    box-shadow:0 0 12px rgba(0,255,170,0.3);
}

/* ===== BUTTON ===== */
.hashtechy-btn {
    background:linear-gradient(135deg,#00ffaa,#00c8ff);
    border:none;
    padding:12px 22px;
    border-radius:12px;
    font-weight:600;
    cursor:pointer;
    color:#000;
    transition:0.3s ease;
}

.hashtechy-btn:hover {
    transform:translateY(-2px);
    box-shadow:0 12px 24px rgba(0,255,170,0.35);
}