﻿
.content {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 60px;
    margin-top: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-sizing: border-box;
}

.registration-section {
    padding-top: 40px;
    padding-bottom: 60px;
}

.registration-card {
    max-width: 850px;
    margin: 50px auto 0;
    background: #fff;
    border-radius: 18px;
    text-align: center;
}

.registration-content {
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}


/* =========================================
       Page Heading
       ========================================= */

.registration-section > h1 {
    font-size: 34px;
    line-height: 1.3;
    margin-bottom: 25px;
}

.registration-content h3 {
    font-size: 22px;
    line-height: 1.45;
    margin-bottom: 18px;
    color: #333;
    word-wrap: break-word;
}

.registration-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
}


/* =========================================
       Registration Icon
       ========================================= */

.registration-icon {
    font-size: 60px;
    margin-bottom: 20px;
}


/* =========================================
       Conference Date
       ========================================= */

.date-pill {
    display: inline-block;
    padding: 7px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    max-width: 100%;
    box-sizing: border-box;
}


/* =========================================
       Button
       ========================================= */

.btn-goto-registration {
    background: #7b0000;
    color: #fff !important;
    border: none;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    display: inline-block;
    text-decoration: none !important;
    margin-top: 15px;
    box-shadow: 0 4px 12px rgba(123, 0, 0, 0.2);
    box-sizing: border-box;
}

    .btn-goto-registration:hover {
        background: #5a0000;
        transform: translateY(-2px);
        color: #fff;
    }


/* =========================================
       Table Wrapper
       ========================================= */

.registration-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    table-layout: auto;
    margin-bottom: 10px;
}

    .registration-table th,
    .registration-table td {
        border: 1px solid #e5e5e5;
        padding: 12px 15px;
        font-size: 15px;
        color: #333;
        vertical-align: top;
        line-height: 1.5;
        word-break: normal;
    }

    .registration-table th {
        background: #7b0000;
        color: #fff;
        font-weight: 600;
    }


/* =========================================
       Note Box
       ========================================= */

.note-box {
    margin-top: 10px;
    padding: 15px 18px;
    background: #f9f9f9;
    border-left: 4px solid #7b0000;
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    text-align: left;
    box-sizing: border-box;
}

    .note-box ul,
    .note-box ol {
        margin-top: 8px;
        margin-bottom: 5px;
    }


/* =========================================
       Email Link
       ========================================= */

.registration-content a {
    overflow-wrap: anywhere;
}


/* =========================================
       Tablet
       ========================================= */

@media (max-width: 991px) {

    .content {
        padding: 40px;
    }

    .registration-section {
        padding-top: 30px;
        padding-bottom: 50px;
    }

        .registration-section > h1 {
            font-size: 30px;
        }

    .registration-content h3 {
        font-size: 21px;
    }
}


/* =========================================
       Mobile
       ========================================= */

@media (max-width: 767px) {

    .content {
        padding: 25px 18px;
        margin-top: 20px;
        border-radius: 14px;
    }

    .registration-section {
        padding-top: 15px;
        padding-bottom: 30px;
    }

        .registration-section > h1 {
            font-size: 26px;
            line-height: 1.35;
            margin-top: 5px;
            margin-bottom: 20px;
        }

    .registration-content {
        padding: 20px 15px;
        border-radius: 14px;
    }

        .registration-content h3 {
            font-size: 19px;
            line-height: 1.45;
            margin-top: 25px;
            margin-bottom: 15px;
        }

        .registration-content p {
            font-size: 14px !important;
            line-height: 1.7;
            margin-bottom: 18px;
        }


        /* Conference Title */
        .registration-content h3:first-child {
            font-size: 19px;
            line-height: 1.5;
        }


    /* Date */
    .date-pill {
        font-size: 13px;
        padding: 7px 14px;
        line-height: 1.5;
    }


    /* Registration Button */
    .btn-goto-registration {
        display: block;
        width: 100%;
        padding: 13px 15px;
        font-size: 14px;
        line-height: 1.5;
        margin-top: 10px;
    }


    /* =====================================
           Mobile Table
           ===================================== */

    .registration-table {
        width: 100%;
        font-size: 13px;
    }

        .registration-table th,
        .registration-table td {
            padding: 9px 8px;
            font-size: 13px;
            line-height: 1.45;
        }

            .registration-table th:first-child,
            .registration-table td:first-child {
                width: 58%;
            }

            .registration-table th:last-child,
            .registration-table td:last-child {
                width: 42%;
            }


    /* =====================================
           Note Box
           ===================================== */

    .note-box {
        padding: 12px 13px;
        font-size: 13.5px;
        line-height: 1.65;
        margin-top: 8px;
    }

        .note-box ul,
        .note-box ol {
            padding-left: 20px !important;
        }


    /* =====================================
           Mobile Spacing
           ===================================== */

    .registration-content h3[style*="margin-top"] {
        margin-top: 28px !important;
    }


    /* Remove excessive inline spacing */
    .registration-content div[style*="margin-bottom"] {
        margin-bottom: 20px !important;
    }

    .registration-content div[style*="margin-top: 40px"] {
        margin-top: 25px !important;
    }
}


/* =========================================
       Small Mobile
       ========================================= */

@media (max-width: 480px) {

    .content {
        padding: 18px 10px;
        margin-top: 12px;
        border-radius: 12px;
    }

    .registration-section {
        padding-left: 5px;
        padding-right: 5px;
    }

        .registration-section > h1 {
            font-size: 23px;
            line-height: 1.35;
        }

    .registration-content {
        padding: 18px 12px;
    }

        .registration-content h3 {
            font-size: 18px;
        }

            .registration-content h3:first-child {
                font-size: 18px;
            }

        .registration-content p {
            font-size: 13.5px !important;
        }

    .date-pill {
        font-size: 12px;
        padding: 6px 11px;
    }

    .btn-goto-registration {
        font-size: 13.5px;
        padding: 12px 10px;
    }

    .registration-table th,
    .registration-table td {
        padding: 8px 6px;
        font-size: 12px;
    }

    .note-box {
        font-size: 13px;
        padding: 11px 10px;
    }
}
