:root {

    --primary: #0b3b2e;
    --primary-dark: #06271e;
    --accent: #c8a951;
    --light: #f5f7f6;
    --dark: #17221e;
    --muted: #6b7772;

}

* {
    box-sizing: border-box;
}

body {

    margin: 0;

    font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

    color: var(--dark);

    background: #f5f7f6;

}


/* NAVBAR */

.navbar {

    min-height: 82px;

}

.brand-logo {

    height: 52px;

    width: auto;

    object-fit: contain;

}


/* HERO */

.verification-hero {

    background:

    radial-gradient(
        circle at top right,
        rgba(200,169,81,.18),
        transparent 35%
    ),

    linear-gradient(
        135deg,
        #f7faf8,
        #eef3f0
    );

    padding: 90px 0 100px;

}


.verification-card {

    background: white;

    border-radius: 24px;

    padding: 55px;

    text-align: center;

    box-shadow:
        0 25px 70px rgba(10, 42, 32, .10);

}


.verification-icon {

    width: 70px;

    height: 70px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: rgba(200,169,81,.15);

    color: var(--primary);

    font-size: 32px;

    font-weight: 800;

}


.verification-card h1 {

    margin-top: 25px;

    font-weight: 800;

    color: var(--primary);

}


.verification-card .lead {

    color: var(--muted);

    max-width: 650px;

    margin:
    15px auto 35px;

}


/* FORM */

.verification-form .form-control {

    border:
    1px solid #d9e1dd;

    border-right: none;

    padding: 18px 20px;

}


.verification-form .form-control:focus {

    box-shadow: none;

    border-color: var(--primary);

}


.btn-primary {

    background: var(--primary);

    border-color: var(--primary);

}


.btn-primary:hover {

    background: var(--primary-dark);

    border-color: var(--primary-dark);

}


/* RESULTS */

.results-section {

    padding: 70px 0;

}


.verified-card {

    background: white;

    border-radius: 24px;

    padding: 35px;

    box-shadow:
        0 20px 60px rgba(0,0,0,.08);

}


.verified-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding-bottom: 25px;

    border-bottom:
    1px solid #e8ecea;

}


.verified-header h2 {

    margin-top: 8px;

    font-weight: 800;

}


.verified-label {

    color: #157347;

    font-weight: 800;

    font-size: 13px;

    letter-spacing: .08em;

}


.status-badge {

    padding: 10px 18px;

    border-radius: 100px;

    font-weight: 700;

    font-size: 13px;

}


.status-active {

    color: #146c43;

    background: #d1e7dd;

}


.status-inactive {

    color: #664d03;

    background: #fff3cd;

}


.status-suspended {

    color: #842029;

    background: #f8d7da;

}


/* PROFILE */

.profile-area {

    display: flex;

    align-items: center;

    gap: 25px;

    padding: 35px 0;

}


.profile-photo img,
.photo-placeholder {

    width: 120px;

    height: 120px;

    border-radius: 18px;

    object-fit: cover;

}


.photo-placeholder {

    background: var(--primary);

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 42px;

    font-weight: 800;

}


.profile-content h3 {

    font-weight: 800;

    margin-bottom: 8px;

}


.membership-number {

    color: var(--muted);

    margin: 0;

}


/* INFORMATION */

.information-grid {

    display: grid;

    grid-template-columns:
    repeat(2, 1fr);

    gap: 15px;

}


.info-box {

    padding: 20px;

    border-radius: 14px;

    background: #f7f9f8;

    border: 1px solid #e8eeeb;

}


.info-box span {

    display: block;

    font-size: 12px;

    color: var(--muted);

    margin-bottom: 7px;

    text-transform: uppercase;

    letter-spacing: .04em;

}


.info-box strong {

    font-size: 16px;

}


/* BIO */

.biography {

    margin-top: 30px;

    padding-top: 30px;

    border-top: 1px solid #e8ecea;

}


.biography h4 {

    font-weight: 800;

    margin-bottom: 15px;

}


/* FOOTER */

.verification-footer {

    margin-top: 35px;

    padding-top: 25px;

    border-top: 1px solid #e8ecea;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.verification-footer p {

    margin: 6px 0 0;

    color: var(--muted);

    font-size: 13px;

}


.verified-stamp {

    border: 3px solid #198754;

    color: #198754;

    padding: 10px 15px;

    font-weight: 900;

    transform: rotate(-5deg);

}


/* NOT FOUND */

.not-found-card {

    background: white;

    padding: 60px 30px;

    text-align: center;

    border-radius: 24px;

    box-shadow:
        0 20px 60px rgba(0,0,0,.08);

}


.not-found-icon {

    width: 65px;

    height: 65px;

    border-radius: 50%;

    background: #f8d7da;

    color: #842029;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: auto;

    font-size: 28px;

    font-weight: 800;

}


/* FOOTER */

footer {

    background: var(--primary);

    color: white;

    padding: 35px 0;

}


footer p {

    margin: 4px 0;

    opacity: .8;

}


/* MOBILE */

@media(max-width: 767px) {

    .verification-hero {

        padding: 50px 15px;

    }

    .verification-card {

        padding: 35px 20px;

    }

    .verification-form .input-group {

        display: block;

    }

    .verification-form .form-control {

        border-right: 1px solid #d9e1dd;

        border-radius: 10px !important;

        margin-bottom: 10px;

    }

    .verification-form .btn {

        width: 100%;

        border-radius: 10px !important;

    }

    .verified-header {

        display: block;

    }

    .status-badge {

        display: inline-block;

        margin-top: 15px;

    }

    .profile-area {

        flex-direction: column;

        text-align: center;

    }

    .information-grid {

        grid-template-columns: 1fr;

    }

    .verification-footer {

        display: block;

    }

    .verified-stamp {

        display: inline-block;

        margin-top: 20px;

    }

}