/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f6f4f2;
    color: #0a2540;
    min-height: 100vh;
}

/* ================= HEADER (DESKTOP) ================= */

.site-header {
    background: linear-gradient(#0a2a66, #0b3b91);
    border-bottom: 2px solid #d4af37;
    padding: 50px 60px 140px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
}

/* LOGO — BIG ON DESKTOP */
.logo-img {
    height: 250px;     /* ~3x visual impact */
    width: auto;
}

/* DESKTOP TITLE */
.site-header h1 {
    font-family: Georgia, serif;
    font-size: 52px;
    letter-spacing: 6px;
    color: #d4af37;
    text-align: center;
    font-weight: 500;
}

/* SILVER BAR */
.silver-bar {
    height: 300px;
    width: auto;
    filter: drop-shadow(0 18px 35px rgba(0,0,0,0.45));
}

/* ================= MAIN ================= */

main {
    margin-top: -90px;
    padding: 0 20px 80px;
}

.verification-area {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.verification-card {
    background: #faf8f5;
    padding: 55px 45px;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.14);
    max-width: 480px;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.verification-card h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
}

/* INPUT */
input {
    width: 100%;
    padding: 16px;
    margin-bottom: 26px;
    border-radius: 7px;
    border: 1px solid #ccc;
    font-size: 15px;
    text-align: center;
}

/* BUTTON */
button {
    width: 100%;
    padding: 16px;
    border-radius: 7px;
    border: none;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background: linear-gradient(90deg, #d4af37, #c9a441);
    cursor: pointer;
}

/* WATERMARK */
.mark-side {
    height: 160px;
    opacity: 0.08;
    margin-left: 35px;
    pointer-events: none;
}

/* ================= FOOTER ================= */

footer {
    text-align: center;
    padding: 26px;
    color: #777;
}

/* ================= MOBILE (POLISHED) ================= */

@media (max-width: 600px) {

    /* ===== HEADER ===== */
    .site-header {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        align-items: start;
        padding: 24px 16px 100px;
    }

    /* LOGO AREA — STRONG VISUAL PRESENCE */
    .logo-img {
        height: 125px;     /* REAL visible size */
        width: auto;
        margin-top: 3px;
    }

    /* REMOVE TITLE COMPLETELY */
    .site-header h1 {
        display: none;
    }

    /* SILVER BAR — RIGHT SIDE DOMINANT */
    .silver-bar {
        height: 220px;
        justify-self: end;
        margin-top: -10px;
    }

    /* ===== MAIN ===== */
    main {
        margin-top: -70px;
        padding: 0 14px 70px;
    }

    .verification-card {
        padding: 38px 26px;
        max-width: 95%;
    }

    /* WATERMARK */
    .mark-side {
        position: absolute;
        right: -8px;
        top: 50%;
        transform: translateY(-50%);
        height: 115px;
        opacity: 0.1;
    }
}
