@font-face {
    font-family: "DanaFaNum";
    src:
        url("/inb/assets/fonts/DanaFaNum-Light.woff2") format("woff2"),
        url("/inb/assets/fonts/DanaFaNum-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "DanaFaNum";
    src:
        url("/inb/assets/fonts/DanaFaNum-ExtraBold.woff2") format("woff2"),
        url("/inb/assets/fonts/DanaFaNum-ExtraBold.woff") format("woff");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "DanaFaNum", Tahoma, Arial, sans-serif;
    background: #080d16;
    color: #fff;
}

h1,
h2,
h3,
button,
.webinar-header h1,
.webinar-time-title,
.submit-button {
    font-family: "DanaFaNum", Tahoma, Arial, sans-serif;
    font-weight: 800;
}

.webinar-landing {
    position: relative;
    min-height: 100vh;
    padding: 80px 20px;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 32%),
        linear-gradient(135deg, #050b14 0%, #151922 45%, #3a3a3a 100%);
}



.webinar-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
}

.webinar-header {
    text-align: center;
    margin-bottom: 36px;
}

.webinar-header h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(30px, 4.5vw, 48px);
    font-weight: 900;
    line-height: 1.35;
}

.webinar-header p {
    margin: 0;
    color: #FFEB3B;
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 400;
    line-height: 1.8;
}

.webinar-card {
    width: 100%;
    background: #f3f3f3;
    border-radius: 16px;
    padding: 18px;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 18px;
    align-items: stretch;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.webinar-image-box {
    grid-column: 1;
    grid-row: 1;
    border-radius: 13px;
    overflow: hidden;
    background: #ddd;
}

.webinar-image-box img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    border-radius: 13px;
}

.webinar-content-box {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    min-width: 0;
}

.webinar-time-title {
    margin: 4px 0 16px;
    color: #fe601f;
    font-size: clamp(21px, 2.6vw, 30px);
    font-weight: 900;
    line-height: 1.6;
    text-align: center;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-bottom: 24px;
    direction: ltr;
}

.countdown-item {
    width: 66px;
    height: 76px;
    background: #fe601f;
    color: #fff;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.16);
}

.countdown-item span {
    font-size: 27px;
    font-weight: 900;
    line-height: 1;
}

.countdown-item small {
    margin-top: 7px;
    font-size: 13px;
    font-weight: 800;
}

.webinar-form {
    width: 100%;
    background: #ffffff;
    border-radius: 10px;
    padding: 22px 22px 0 22px;
    margin-top: auto;
}

.form-group {
    margin-bottom: 17px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #111111;
    font-size: 14px;
    font-weight: 800;
    text-align: right;
}

.form-group input {
    width: 100%;
    height: 44px;
    border: 1px solid #dddddd;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 15px;
    font-family: inherit;
    color: #111111;
    background: #ffffff;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus {
    border-color: #004ca2;
    box-shadow: 0 0 0 3px rgba(255, 208, 0, 0.24);
}

.submit-button {
    display: block;
    min-width: 150px;
    height: 44px;
    margin: 8px auto 0;
    border: none;
    border-radius: 8px;
    background: #004ca2;
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.submit-button:hover {
    background: #004ca2;
    transform: translateY(-1px);
}

.submit-button:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    margin-top: 13px;
    min-height: 24px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    line-height: 1.8;
}

.form-message.success {
    color: #16803a;
}

.form-message.error {
    color: #fe601f;
}

.form-note {
    margin: 13px 0 0;
    color: #555;
    font-size: 12px;
    text-align: center;
    line-height: 1.7;
}
img.mobileView {
    display: none;
}
@media (max-width: 768px) {
    .webinar-landing {
        padding: 55px 14px;
    }
img.desktopView {
    display: none;
}
img.mobileView {
    display: block;
}
    .webinar-header {
        margin-bottom: 10px;
    }

    .webinar-card {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin: 0 auto;
        padding: 14px;
    }

    .webinar-image-box {
        grid-column: 1;
        grid-row: 1;
    }

    .webinar-content-box {
        grid-column: 1;
        grid-row: 2;
    }

    .webinar-image-box img {
        min-height: auto;
        height: auto;
        object-fit: contain;
    }

    .webinar-form {
        margin-top: 8px;
    }
}

@media (max-width: 480px) {
    .webinar-landing {
        padding: 20px 10px;
    }
.form-group {
    margin-bottom: 10px;
}
    .webinar-card {
        border-radius: 13px;
        padding: 10px;
        gap: 14px;
    }

        .webinar-header h1 {
            font-size: 25px;
            padding: 17px 17px 0 17px;
        }

.webinar-header p {
    font-size: 15px;
    padding: 0 17px;
}

    .webinar-time-title {
        font-size: 20px;
        margin-bottom: 0;
    }

.countdown {
    gap: 5px;
    width: 80%;
    margin: 0 auto 7px auto;
}

    .countdown-item {
        flex: 1;
        width: auto;
        height: 68px;
        border-radius: 7px;
    }

    .countdown-item span {
        font-size: 22px;
    }

    .countdown-item small {
        font-size: 12px;
    }

    .webinar-form {
        padding: 18px 14px;
    }

        .submit-button {
            width: 50%;
            font-size: 18px;
        }
}