:root {
    --brand: #0073cf;
    --bg: #f4f6f8;
    --card: #ffffff;
    --muted: #6b7280;
    --radius: 8px;
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: Inter, Segoe UI, Arial, Helvetica, sans-serif;
    background: linear-gradient(180deg, #0b5fa8 0%, #0a5b9b 100%);
    color: #111
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px
}

/* Centered card */
.main {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px
}

.verify-card {
    position: relative;
    background: var(--card);
    border-radius: 6px;
    box-shadow: 0 30px 60px rgba(3, 27, 66, .35);
    width: 100%;
    max-width: 980px;
    overflow: hidden
}

/* thin green top bar */
.verify-card::before {
    content: "";
    display: block;
    height: 8px;
    background: #6a7d1f
}

/* inner card header */
.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    border-bottom: 1px solid #eef1f4;
    background: #fafafa
}

.card-header .card-title {
    color: #0b5fa8;
    font-size: 20px;
    font-weight: 600
}

.card-header .card-logo img {
    height: 28px
}

.verify-body {
    padding: 60px 120px 80px;
    position: relative;
}

.result-topbar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 32px;
}

.title {
    margin: 0 0 14px;
    font-size: 28px;
    color: #0b5fa8
}

.status-tag {
    font-size: 12px;
    color: #6b7280;
    letter-spacing: .08em;
    margin-bottom: 16px;
    text-align: center
}

.status {
    font-size: 14px;
    color: #6b7280;
    letter-spacing: .08em;
    margin-bottom: 16px;
    text-align: left
}

.candidate-name {
    font-weight: 700;
    font-size: 20px;
    margin: 18px 0
}

.meta {
    display: flex;
    gap: 40px;
    margin-top: 28px
}

.meta .meta-block {
    flex: 1
}

.meta .label {
    font-size: 12px;
    color: #6b7280;
    letter-spacing: .06em
}

.meta .value {
    margin-top: 8px;
    font-size: 14px;
    color: #222
}

.criteria {
    margin-top: 28px;
    color: #55636d
}

/* Verify form center style on index */
.verify-form {
    display: block
}

.verify-form .input-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px
}

input[type=text] {
    width: 420px;
    padding: 10px 12px;
    border: 0;
    border-bottom: 2px solid #e0e0e0;
    background: transparent;
    font-size: 16px
}

input[type=text]:focus {
    outline: none;
    border-bottom-color: #d9534f
}

.btn-primary {
    background: #d8dbe0;
    color: #555;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: .08em;
    margin-top: 0;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
}

.btn-primary:hover {
    filter: brightness(.98)
}

.note {
    color: var(--muted);
    font-size: 13px;
    margin-top: 18px;
    text-align: center
}

.site-footer {
    padding: 18px 0;
    background: transparent;
    color: rgba(255, 255, 255, .9);
    text-align: center;
    font-size: 13px
}

.visually-hidden {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap
}

@media (max-width:800px) {
    .verify-body {
        padding: 36px
    }

    input[type=text] {
        width: 100%;
    }

    .verify-card {
        margin: 18px
    }
}