/* ==========================================
   RESET
========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #ececec;
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
}

/* ==========================================
   HEADER
========================================== */

.top-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 130px;
    background: #fff;
    border-bottom: 1px solid #d8d8d8;
    z-index: 999;
}

.header-container {
    width: 100%;
    height: 100%;
    padding: 0 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ==========================================
   LOGO KPMG
========================================== */

.logo-left img {
    height: 75px;
    width: auto;
    display: block;
}

/* ==========================================
   LOGO MIND ID
========================================== */

.logo-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

    .logo-right img {
        height: 75px;
        width: auto;
        display: block;
    }

/* ==========================================
   LANGUAGE
========================================== */

.language-select {
    width: 190px;
    height: 32px;
    background: #d4d8dd;
    border: none;
    border-radius: 3px;
    font-size: 14px;
}

/* ==========================================
   PAGE
========================================== */

.page-wrapper {
    padding-top: 138px;
    padding-bottom: 10px;
}

/* ==========================================
   CONTENT PANEL
========================================== */

.main-panel {
    width: 90%;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #d9d9d9;
}

/* ==========================================
   BLUE HEADER
========================================== */

.panel-header {
    padding: 10px 24px;
    color: #fff;
    font-size: 13px;
    font-weight: normal;
    background: linear-gradient(90deg, #426ab8 0%, #4c7fd5 55%, #58afd7 100%);
}

/* ==========================================
   CONTENT
========================================== */

.panel-content {
    padding: 25px 38px 45px;
}

    .panel-content p {
        margin-bottom: 14px;
        line-height: 1.4;
        font-size: 14px;
    }

/* ==========================================
   SECTION TITLE
========================================== */

.section-title {
    margin-top: 55px;
    margin-bottom: 25px;
    font-size: 14px;
    font-weight: bold;
}

/* ==========================================
   FORM
========================================== */

.form-row {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
}

    .form-row label {
        width: 30%;
        font-size: 14px;
    }

.input-wrapper {
    width: 70%;
    display: flex;
    flex-direction: column;
}

.form-control {
    width: 100%;
    height: 40px;
    border: 1px solid #d2d2d2;
    border-radius: 2px;
    padding: 8px 10px;
    font-size: 14px;
    background: #fff;
}

textarea.form-control {
    height: 120px;
    resize: vertical;
}

#identityFields {
    margin-top: 10px;
}

/* ==========================================
   RADIO BUTTON
========================================== */

.radio-group {
    margin-top: 20px;
    margin-left: 0;
    padding-left: 0;
}

    .radio-group input[type="radio"] {
        width: 12px;
        height: 12px;
        margin-right: 8px;
        vertical-align: middle;
        transform: scale(0.9);
    }

    .radio-group label {
        display: block;
        margin: 10px 0;
        font-size: 14px;
        font-weight: normal;
        padding-left: 0;
    }

/* ==========================================
   CHECKBOX
========================================== */

.checkbox-section {
    margin-top: 35px;
    margin-left: 0;
    padding-left: 0;
}

    .checkbox-section input[type="checkbox"] {
        width: 12px;
        height: 12px;
        margin-right: 8px;
        vertical-align: middle;
        transform: scale(0.9);
    }

    .checkbox-section label {
        font-size: 14px;
        line-height: 1.5;
        padding-left: 0;
    }

/* ==========================================
   BLOCK ALIGNMENT FOR RADIO/CHECKBOX
========================================== */

.input-block {
    width: 100%;
    margin-left: 0;
}

/* ==========================================
   VALIDATION
========================================== */

.is-invalid {
    border: 1px solid #dc3545 !important;
}

.text-danger {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    display: block;
    line-height: 1.4;
}

.radio-invalid {
    border: 1px solid #dc3545;
    border-radius: 4px;
    padding: 10px 12px;
}

.checkbox-invalid {
    border: 1px solid #dc3545;
    border-radius: 4px;
    padding: 10px 12px;
}

/* ==========================================
   LINK
========================================== */

.privacy-link {
    color: #0066ff;
    text-decoration: none;
}

    .privacy-link:hover {
        text-decoration: underline;
    }

/* ==========================================
   BUTTON
========================================== */

.btn-container {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.btn-proceed {
    background: #d4d8dd;
    border: none;
    padding: 10px 18px;
    cursor: pointer;
    font-size: 14px;
}

    .btn-proceed:hover {
        opacity: 0.95;
    }

/* ==========================================
   FOOTER
========================================== */

.footer {
    width: 100%;
    margin-top: 0;
    font-size: 14px;
}

.footer-line {
    width: 100%;
    height: 6px;
    background: #00a4ed;
}

.footer-links {
    width: 100%;
    background: #ffffff;
    text-align: center;
    padding: 5px 0;
}

    .footer-links a {
        color: #0066ff;
        text-decoration: none;
        font-size: 12px;
        font-weight: normal;
        margin: 0 10px;
    }

        .footer-links a:hover {
            text-decoration: underline;
        }

.footer-copyright {
    width: 100%;
    background: #d9d9d9;
    padding: 8px 100px;
    font-size: 12px;
    line-height: 1.5;
    color: #333;
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 768px) {
    .top-header {
        position: relative;
        height: auto;
    }

    .header-container {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .page-wrapper {
        padding-top: 20px;
    }

    .main-panel {
        width: 95%;
    }

    .panel-content {
        padding: 20px;
    }

    .form-row {
        flex-direction: column;
        align-items: flex-start;
    }

        .form-row label {
            width: 100%;
            margin-bottom: 5px;
        }

    .input-wrapper {
        width: 100%;
    }

    .form-control {
        width: 100%;
    }

    .input-block {
        width: 100%;
        margin-left: 0;
    }

    .language-dropdown {
        width: 190px;
        height: 32px;
        background: #d4d8dd;
        border: 1px solid #cfd4d9;
        border-radius: 2px;
        padding: 0 8px;
        font-size: 13px;
        color: #333;
        cursor: pointer;
    }

    .language-select {
        width: 120px;
        height: 38px;
    }

    .footer-copyright {
        padding: 15px 20px;
    }
}
