* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
    font-family: Arial, Helvetica, sans-serif;
    color: #202020;
}

body {
    background: #fff;
}

.page {
    min-height: 100vh;
    display: flex;
    position: relative;
    overflow: hidden;
}


/* =========================
   MAIN LEFT SECTION
========================= */

.main-content {
    width: 67%;
    min-height: 100vh;
    background: #fff;
    position: relative;
}

.top-header {
    height: 120px;
    width: 100%;
    background: #4d59be;
    position: relative;
}


/* =========================
   DIAGONAL WHITE CUT
========================= */

.top-header::after {
    content: "";
    position: absolute;

    top: 0;
    right: -1px;

    width: 47%;
    height: 120px;

    background: white;

    clip-path: polygon(
        44% 0,
        100% 0,
        100% 100%,
        0 100%
    );

    z-index: 1;
}


/* ==================================================
   /* ==================================================
   COMMON LOGO
================================================== */

.logo-box,
.logo-box2,
.logo-box3 {
    position: absolute;
    z-index: 5;

    background: 

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: flex-end;
}


/* ==================================================
   LOGO 1
================================================== */

.logo-box {
    top: 5px;
    left: 14px;

    width: 220px;
    height: 105px;
}


/* ==================================================
   LOGO 2
================================================== */

.logo-box2 {
    top: 5px;
    left: 50%;

    transform: translateX(-50%);

    width: 110px;
    height: 105px;
}


/* ==================================================
   LOGO 3
================================================== */

.logo-box3 {
    top: 5px;
    right: 14px;

    width: 110px;
    height: 105px;
}


/* ==================================================
   PNG IMAGE
   BIGGER PNG INSIDE ROUND LOGO
================================================== */

.logo-box img,
.logo-box2 img,
.logo-box3 img {
    position: absolute;

    width: 115px;
    height: 115px;

    object-fit: contain;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    z-index: 10;

    border-radius: 50%;
}


/* ==================================================
   ROUND LOGO
================================================== */

.logo-circle,
.logo-circle2,
.logo-circle3 {
    width: 120px;
    height: 120px;

    border-radius: 50%;

    background: #f47721;

    border: 3px solid #1b0993;

    display: flex;
    align-items: center;
    justify-content: center;

    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    z-index: 2;

    overflow: hidden;
}


/* ==================================================
   TEXT INSIDE CIRCLE
================================================== */

.logo-circle span,
.logo-circle2 span,
.logo-circle3 span {
    color: rgb(134, 39, 39);

    font-size: 11px;
    font-weight: bold;

    z-index: 4;
}


/* ==================================================
   LOGO NAME
================================================== */

.logo-box strong,
.logo-box2 strong,
.logo-box3 strong {
    position: absolute;

    top: 108px;
    left: 50%;

    transform: translateX(-50%);

    font-size: 19px;

    color: #17254c;

    white-space: nowrap;

    z-index: 20;
}

/* =========================
   CONTENT
========================= */

.content {
    width: 78%;
    margin: 102px auto 0;
}

.content h1 {
    color: #4858c9;

    font-size: 24px;
    font-weight: 400;

    margin-bottom: 20px;

    white-space: nowrap;
}


/* =========================
   EVENTS TABLE
========================= */

.events-table {
    width: 100%;

    box-shadow:
        0 6px 8px rgba(0, 0, 0, 0.12);
}

.table-row {
    display: grid;

    grid-template-columns: 54% 46%;

    min-height: 49px;

    border-bottom: 1px solid #d9d9d9;

    background: #fff;

    font-size: 16px;
}

.table-row > div {
    display: flex;

    align-items: center;

    padding: 0 15px;
}

.table-header {
    min-height: 50px;

    background: #d9e7f0;

    border: none;

    font-weight: bold;
}

.table-header > div {
    padding-left: 15px;
}


/* =========================
   NOTICE
========================= */

.notice {
    margin-top: 29px;

    font-size: 14px;
    line-height: 18px;

    text-align: left;
}

.browser-note {
    margin-top: 21px;

    color: red;

    font-size: 13px;
}


/* =========================
   RIGHT SIDEBAR
========================= */

.sidebar {
    width: 33%;
    min-height: 100vh;

    background: #4d59be;

    padding: 42px 26px;

    position: relative;

    z-index: 2;
}


/* =========================
   REGISTRATION BOX
========================= */

.registration-box {
    width: 100%;
    min-height: 165px;

    background: #fff;

    border-radius: 12px;

    padding: 28px 87px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    gap: 27px;
}

.registration-box button {
    width: 100%;
    height: 42px;

    border-radius: 11px;

    font-size: 16px;
    font-weight: bold;

    cursor: pointer;

    font-family: Arial, Helvetica, sans-serif;
}

.register-btn {
    background: #e0eaf1;

    border: 1px solid #6276dc;

    color: #4c5fc5;
}

.login-btn {
    background: #ffbd08;

    border: none;

    color: #000;
}


/* =========================
   REFERENCE DOCUMENTS
========================= */

.documents {
    margin-top: 45px;

    padding-left: 1px;
}

.documents h2 {
    color: white;

    font-size: 28px;
    font-weight: 400;

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 25px;
}

.document-icon {
    font-size: 28px;

    color: white;
}

.documents a {
    color: white;

    text-decoration: none;

    display: flex;

    align-items: center;

    font-size: 17px;

    margin-bottom: 30px;
}

.documents a span {
    font-size: 27px;

    margin-right: 13px;

    line-height: 1;
}


/* =========================
   DECORATIVE CIRCLES
========================= */

/*
.circle {
    position: absolute;
    pointer-events: none;
}

.circle-left {
    width: 135px;
    height: 135px;

    left: -103px;
    top: 118px;

    border-radius: 50%;

    border: 35px solid #f2f2f2;
}

.circle-left::after {
    content: "";

    position: absolute;

    width: 67px;
    height: 67px;

    border-radius: 50%;

    background: #e4e8fb;

    top: -1px;
    left: -1px;
}

.circle-bottom {
    width: 175px;
    height: 175px;

    right: 497px;
    bottom: 57px;

    border-radius: 50%;

    border: 35px solid #f0f0f0;
}

.circle-bottom::after {
    content: "";

    position: absolute;

    width: 105px;
    height: 105px;

    border-radius: 50%;

    background: #cbd1f5;

    top: 0;
    left: 0;
}
*/


/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 1100px) {

    .content {
        width: 88%;

        margin-top: 70px;
    }

    .content h1 {
        font-size: 20px;

        white-space: normal;
    }

    .registration-box {
        padding: 25px 35px;
    }

    .documents h2 {
        font-size: 23px;
    }

    .documents a {
        font-size: 15px;
    }
}


/* ==================================================
   TABLET / MOBILE
================================================== */

@media (max-width: 768px) {

    .page {
        flex-direction: column;
    }

    .main-content {
        width: 100%;

        min-height: auto;
    }

    .top-header {
        height: 100px;
    }

    .top-header::after {
        display: none;
    }


    /* LOGO 1 */

    .logo-box {
        top: 5px;
        left: 12px;

        width: 90px;
        height: 92px;
    }

    .logo-box img {
        width: 55px;
        height: 35px;
    }

    .logo-circle {
        width: 67px;
        height: 67px;
    }

    .logo-circle::before {
        width: 53px;

        top: 20px;
    }

    .logo-box strong {
        font-size: 16px;
    }


    /* LOGO 2 */

    .logo-box2 {
        top: 5px;

        width: 90px;
        height: 92px;
    }

    .logo-box2 img {
        width: 55px;
        height: 35px;
    }

    .logo-circle2 {
        width: 67px;
        height: 67px;
    }

    .logo-circle2::before {
        width: 53px;

        top: 20px;
    }

    .logo-box2 strong {
        font-size: 16px;
    }


    /* LOGO 3 */

    .logo-box3 {
        top: 5px;
        right: 12px;

        width: 90px;
        height: 92px;
    }

    .logo-box3 img {
        width: 55px;
        height: 35px;
    }

    .logo-circle3 {
        width: 67px;
        height: 67px;
    }

    .logo-circle3::before {
        width: 53px;

        top: 20px;
    }

    .logo-box3 strong {
        font-size: 16px;
    }


    /* CONTENT */

    .content {
        width: 92%;

        margin: 45px auto;
    }

    .content h1 {
        font-size: 19px;

        line-height: 26px;
    }


    /* TABLE */

    .table-row {
        grid-template-columns: 1fr;

        font-size: 14px;
    }

    .table-row > div {
        min-height: 42px;

        padding: 8px 12px;
    }

    .table-header {
        display: grid;

        grid-template-columns: 1fr 1fr;
    }

    .table-header > div {
        min-height: 48px;
    }


    /* SIDEBAR */

    .sidebar {
        width: 100%;

        min-height: auto;

        padding: 30px 20px;
    }

    .registration-box {
        padding: 25px;
    }

    .documents {
        margin-top: 35px;
    }

    .documents h2 {
        font-size: 23px;
    }

    .documents a {
        margin-bottom: 22px;
    }

    .circle-left,
    .circle-bottom {
        display: none;
    }
}


/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 480px) {

    .content {
        width: 94%;
    }

    .content h1 {
        font-size: 17px;
    }

    .notice {
        font-size: 13px;

        line-height: 18px;
    }

    .browser-note {
        line-height: 18px;
    }

    .registration-box {
        padding: 20px;
    }

    .registration-box button {
        font-size: 14px;
    }
}











