/* Certificate Verifier By Thinkron Tech - Premium Frontend Design */

.cvdh-verification-form-container {
    position: relative;
    max-width: 680px;
    margin: 55px auto;
    padding: 46px 50px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(56, 88, 233, 0.14), transparent 34%),
        linear-gradient(145deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow:
        0 28px 80px rgba(15, 23, 42, 0.13),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    overflow: hidden;
    font-family: inherit;
}

.cvdh-card-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    top: -130px;
    right: -120px;
    background: radial-gradient(circle, rgba(56, 88, 233, 0.22), transparent 70%);
    pointer-events: none;
}

/* Header Area - Icon Removed */

.cvdh-form-header {
    position: relative;
    display: block;
    text-align: center;
    margin-bottom: 36px;
}

.cvdh-icon-wrap {
    display: none !important;
}

.cvdh-icon-wrap span,
.cvdh-icon-wrap::before,
.cvdh-icon-wrap::after {
    display: none !important;
}

.cvdh-form-header > div:last-child {
    width: 100%;
    padding: 0;
}

.cvdh-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(56, 88, 233, 0.08);
    border: 1px solid rgba(56, 88, 233, 0.16);
    color: #3858e9;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1.2;
}

.cvdh-eyebrow::before {
    content: "✓";
    width: 22px;
    height: 22px;
    margin-right: 9px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f172a 0%, #3858e9 100%);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
}

.cvdh-form-header h2 {
    margin: 0;
    font-size: 42px;
    line-height: 1.08;
    color: #0f172a;
    font-weight: 950;
    letter-spacing: -0.045em;
    white-space: nowrap;
    text-align: center;
}

.cvdh-subtitle {
    margin: 20px 0 0;
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
    text-align: center;
}

/* Form Fields */

.cvdh-field-group {
    margin-bottom: 20px;
}

.cvdh-verification-form label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 850;
    color: #1e293b;
}

.cvdh-verification-form input[type="text"] {
    width: 100%;
    height: 60px;
    padding: 0 18px;
    border: 1px solid #dbe3ef;
    border-radius: 17px;
    background: #ffffff;
    color: #0f172a;
    font-size: 16px;
    outline: none;
    box-sizing: border-box;
    transition: all 0.25s ease;
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.03);
}

.cvdh-verification-form input[type="text"]::placeholder {
    color: #9aa8bb;
}

.cvdh-verification-form input[type="text"]:focus {
    border-color: #3858e9;
    box-shadow:
        0 0 0 4px rgba(56, 88, 233, 0.12),
        inset 0 1px 2px rgba(15, 23, 42, 0.03);
}

.cvdh-verification-form button {
    width: 100%;
    min-height: 62px;
    border: none;
    border-radius: 18px;
    background: linear-gradient(135deg, #0f172a 0%, #3858e9 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 950;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 18px 40px rgba(56, 88, 233, 0.28);
}

.cvdh-verification-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 52px rgba(56, 88, 233, 0.36);
}

.cvdh-verification-form button:active {
    transform: translateY(0);
}

.cvdh-security-note {
    margin: 14px 0 0;
    text-align: center;
    color: #64748b;
    font-size: 13px;
}

/* Result Box */

.cvdh-result {
    margin-top: 26px;
    padding: 24px;
    border-radius: 20px;
    font-size: 15px;
    line-height: 1.6;
}

.cvdh-result.success {
    background: linear-gradient(145deg, #ecfdf5, #f7fffb);
    border: 1px solid #bbf7d0;
    color: #064e3b;
}

.cvdh-result.error {
    background: linear-gradient(145deg, #fff1f2, #fffafa);
    border: 1px solid #fecdd3;
    color: #7f1d1d;
}

.cvdh-result-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 17px;
}

.cvdh-result.success .cvdh-result-title span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #16a34a;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.cvdh-result.error .cvdh-result-title span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e11d48;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.cvdh-result-details {
    background: rgba(255, 255, 255, 0.78);
    border-radius: 15px;
    padding: 15px 17px;
    margin-bottom: 16px;
}

.cvdh-result-details p {
    margin: 8px 0;
    color: #0f172a;
}

.cvdh-result-details span {
    font-weight: 900;
    color: #334155;
}

.cvdh-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    border-radius: 15px;
    background: #16a34a;
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 900;
    transition: all 0.25s ease;
    box-shadow: 0 12px 25px rgba(22, 163, 74, 0.22);
}

.cvdh-download-btn:hover {
    background: #15803d;
    transform: translateY(-2px);
}

/* Tablet Responsive */

@media (max-width: 900px) {
    .cvdh-verification-form-container {
        max-width: 620px;
        padding: 38px 34px;
    }

    .cvdh-form-header h2 {
        font-size: 36px;
    }
}

/* Mobile Responsive */

@media (max-width: 640px) {
    .cvdh-verification-form-container {
        margin: 28px 14px;
        padding: 28px 20px;
        border-radius: 24px;
    }

    .cvdh-form-header {
        text-align: center;
        margin-bottom: 28px;
    }

    .cvdh-eyebrow {
        margin-bottom: 18px;
        padding: 8px 12px;
        font-size: 10px;
        letter-spacing: 0.08em;
    }

    .cvdh-eyebrow::before {
        width: 20px;
        height: 20px;
        margin-right: 7px;
        font-size: 11px;
    }

    .cvdh-form-header h2 {
        font-size: 29px;
        line-height: 1.12;
        white-space: normal;
        letter-spacing: -0.035em;
    }

    .cvdh-subtitle {
        margin-top: 14px;
        font-size: 14px;
    }

    .cvdh-verification-form input[type="text"] {
        height: 56px;
        font-size: 15px;
    }

    .cvdh-verification-form button {
        min-height: 56px;
        font-size: 15px;
    }

    .cvdh-result {
        padding: 18px;
    }
}