/* ========================================================
  HEADER STYLES (APPLY TO ALL PAGES)
======================================================== */
.header {
    position: fixed;
    width: 100%;
    height: 60px;
    /* Default height */
    top: 0;
    left: 0;
    background-color: var(--collection-1-white);
    box-shadow: 5px 5px 25px #00000040;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 68px;
    transition: height 0.3s ease-in-out;
    /* Smooth transition when height changes */
}

.header .navbar-container {
    display: flex;
    align-items: center;
    width: 100%;
}

.header .logotext {
    font-family: "Poppins-Regular", Helvetica, sans-serif;
    font-weight: 600 !important;
    color: var(--collection-1-black) !important;
    font-size: clamp(12px, 2vw, 18px);
    /* font-size: 18px !important; */
    letter-spacing: 0;
    line-height: normal;
}

.header .navbar-brand img {
    /* width: 116px;
  height: 45px; */
    width: clamp(30px, 4vw, 40px);
    height: clamp(30px, 4vw, 40px);
    object-fit: cover;
}

.header .navbar-logo img {
    /* width: 116px;
  height: 45px; */
    width: auto;
    height: clamp(20px, 4vw, 30px);
    object-fit: cover;
}

.header .navbar-toggler {
    border: none;
    outline: none;
}

.header .navbar-toggler-icon {
    width: clamp(20px, 4vw, 1.5em);
    height: clamp(20px, 4vw, 1.5em);
}

.header .navbar-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header .nav-link {
    font-family: "Poppins-Medium", Helvetica, sans-serif;
    font-weight: 500;
    color: #000000;
    font-size: 14px;
}

.header .dropdown-menu {
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.header .btn-header-login {
    font-size: 14px;
    font-weight: 500;
    padding: 6px 15px;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, and Opera */
}

.nav-link.no-arrow.dropdown-toggle::after {
    display: none !important;
}

.dropdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: auto;
}

.abbr {
    width: 30px;
}

.lang-name {
    flex: 1;
    text-align: left;
}

.language-icon {
    width: 68px;
    height: 68px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: "Poppins-Regular", Helvetica, sans-serif !important;
    color: var(--collection-1-black);
    overflow: hidden;
}

.icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("../images/rafflesia2-shape.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transition: transform 0.6s;
}

.language-icon:hover .icon-bg {
    animation: spin 0.8s linear infinite;
}

.icon-text {
    position: relative;
    z-index: 2;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Responsive Styles */
@media (max-width: 991px) {
    .header {
        height: auto;
        /* Allow height to adjust */
        padding: 5px 10px;
        /* Add padding to create space */
        flex-direction: column;
        /* Stack elements vertically */
        align-items: center;
    }

    .header .navbar-container {
        display: flex;
        /* d-flex */
        justify-content: space-between;
        /* justify-content-between */
        align-items: center;
        /* align-items-center */
        width: 100%;
    }

    .header .navbar-collapse {
        width: 100%;
    }

    .header .navbar-nav {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        /* Add spacing between items */
    }

}

body {
    padding-top: 50px;
    /* padding-top: 60px; */
    /* Matches header height */
}

@media (max-width: 991px) {
    body {
        /* padding-top: 80px; */
    }
}

@media (max-width: 250px) {
    body {
        padding-top: 130px;
        /* Increase if header gets taller on small screens */
    }
}

/* ========================================================
  FONT STYLES (APPLY TO ALL PAGES)
======================================================== */
.font-blue-link {
    color: #007aff;
}

.span {
    color: #000000;
}

.blue-line {
    background-color: var(--collection-1-blue);
    height: 1.5px;
    transform: translateZ(0);
    /* force GPU layer rendering */
    will-change: transform;
}

.grey-line {
    background-color: var(--collection-1-grey);
    height: 0.5px;
    transform: translateZ(0);
    /* force GPU layer rendering */
    will-change: transform;
}

.form-check-input:checked+label img {
    border-color: var(--collection-1-blue);
    /* or any color you like */
    transform: rotate(-5deg) scale(1.05);
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.6);
    transition: all 0.3s ease;
}

.form-check label img {
    transition: all 0.3s ease;
}


.custom-text1-blue {
    font-family: "Poppins-Regular", Helvetica, sans-serif !important;
    font-weight: 600 !important;
    color: var(--collection-1-blue) !important;
    font-size: 16px !important;
    letter-spacing: 0;
    line-height: normal;
}

.custom-text1-black {
    font-family: "Poppins-Regular", Helvetica, sans-serif !important;
    font-weight: 600 !important;
    color: var(--collection-1-black) !important;
    font-size: 16px !important;
    letter-spacing: 0;
    line-height: normal;
}

.custom-text1-grey {
    font-family: "Poppins-Regular", Helvetica, sans-serif !important;
    font-weight: 600 !important;
    color: var(--collection-1-grey) !important;
    font-size: 16px !important;
    letter-spacing: 0;
    line-height: normal;
}

.custom-text2 {
    font-family: "Poppins-Regular", Helvetica, sans-serif !important;
    font-weight: 400 !important;
    color: var(--collection-1-black) !important;
    font-size: 16px !important;
    letter-spacing: 0;
    line-height: normal;
}

.custom-text3 {
    font-family: "Poppins-Regular", Helvetica, sans-serif !important;
    font-weight: 400 !important;
    color: var(--collection-1-grey) !important;
    font-size: 16px !important;
    letter-spacing: 0;
    line-height: normal;
    font-style: italic !important;
    /* This will make the text italic */
}


.custom-text2 a {
    color: #000;
    /* default color */
    text-decoration: none;
    display: block;
    /* make full li clickable */
}

.custom-text2 a:hover {
    color: var(--collection-1-blue) !important;
}

.font-red {
    color: #f4323c;
}

.p {
    position: absolute;
    width: 586px;
    height: 30px;
    top: 136px;
    left: 0;
    font-family: "Poppins-Regular", Helvetica, sans-serif;
    font-weight: 400;
    color: var(--collection-1-black);
    font-size: 20px;
    letter-spacing: 0;
    line-height: normal;
}

.div {
    background-color: #ffffff;
    width: 1280px;
    height: 2155px;
    position: relative;
}

.group {
    position: absolute;
    width: 100%;
    height: 2012px;
    top: 51px;
    left: 68px;
}

.text-wrapper {
    position: absolute;
    height: 24px;
    top: 0;
    left: 0;
    font-family: "Poppins-Regular", Helvetica, sans-serif;
    font-weight: 400;
    color: var(--collection-1-grey);
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
}

.text-wrapper-2 {
    position: absolute;
    width: 100%;
    height: 72px;
    top: 53px;
    left: 0;
    font-family: "Poppins-SemiBold", Helvetica, sans-serif;
    font-weight: 600;
    color: var(--collection-1-black);
    font-size: 48px;
    letter-spacing: 0;
    line-height: normal;
}

.instruction-list {
    counter-reset: list-counter;
    /* Initialize counter */
    list-style: none;
    padding-left: 0;
}

.instruction-list>li {
    counter-increment: list-counter;
    font-family: "Poppins", Helvetica, sans-serif;
    font-weight: 400;
    color: #000000;
    font-size: 20px;
    letter-spacing: 0;
    line-height: normal;
    margin-bottom: 13px;
    height: auto;

    display: flex;
    /* Aligns text properly */
    align-items: flex-start;
}

.instruction-list>li::before {
    content: counter(list-counter) ".";
    font-weight: 400;
    margin-right: 10px;
    flex-shrink: 0;
    /* Prevents the number from shrinking */
    width: 25px;
    /* Ensures proper alignment */
    text-align: right;
    /* Aligns the number properly */
}

.instruction-list ul {
    list-style-type: disc;
    /* Proper bullet points */
    margin-left: 42px;
    padding-left: 10px;
}

.instruction-list ul li {
    font-family: "Poppins", Helvetica, sans-serif;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 0;
    line-height: normal;
    margin-bottom: 13px;
    height: auto;
}

/* ========================================================
  REUSABLE COMPONENT STYLES (APPLY TO ALL PAGES)
======================================================== */
.i-am-a {
    position: absolute;
    height: 24px;
    left: 0;
    font-family: "Poppins-Regular", Helvetica, sans-serif;
    font-weight: 400;
    color: var(--collection-1-black);
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
}

.i-would-like-to {
    position: absolute;
    height: 24px;
    left: 0;
    font-family: "Poppins-Regular", Helvetica, sans-serif;
    font-weight: 400;
    color: var(--collection-1-black);
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
}

.recover-using {
    position: absolute;
    height: 24px;
    left: 0;
    font-family: "Poppins-Regular", Helvetica, sans-serif;
    font-weight: 400;
    color: var(--collection-1-black);
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
}

.group-option-wrapper {
    position: absolute;
}

.group-option2-wrapper {
    position: absolute;
}

.group-option3-wrapper {
    position: absolute;
}

.option-wrapper {
    display: flex;
    gap: 24px;
}

.option-wrapper2 {
    display: flex;
    gap: 22px;
}

.option2-wrapper {
    display: flex;
    gap: 24px;
}

.option3-wrapper {
    display: flex;
    gap: 24px;
}

.option {
    width: 251px;
    height: 125px;
    border-radius: 15px;
    border: 0.5px solid var(--collection-1-grey);
    background-color: #ffffff;
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.option2 {
    width: 251px;
    height: 125px;
    border-radius: 15px;
    border: 0.5px solid var(--collection-1-grey);
    background-color: #ffffff;
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.option3 {
    width: 251px;
    height: 125px;
    border-radius: 15px;
    border: 0.5px solid var(--collection-1-grey);
    background-color: #ffffff;
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.option4 {
    width: 160px;
    height: 125px;
    border-radius: 15px;
    border: 0.5px solid var(--collection-1-grey);
    background-color: #ffffff;
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.selected {
    border: 2px solid var(--collection-1-blue);
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.option-image {
    width: 50px;
    height: 50px;
}

.option-text {
    margin-top: 15px;
    font-family: "Poppins-Medium", Helvetica, sans-serif;
    font-size: 16px;
    color: var(--collection-1-grey);
}

.selected .option-text {
    color: var(--collection-1-blue);
}

.checkmark {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 10px;
    right: 10px;
    visibility: hidden;
}

.selected .checkmark {
    visibility: visible;
}

/* Input field -- start*/
.input-label-position {
    position: absolute;
    width: 530px;
    height: 97px;
    left: 0;
}

.div-2 {
    position: absolute;
    height: 24px;
    top: 0;
    left: 0;
    font-family: "Poppins-Regular", Helvetica, sans-serif;
    font-weight: 400;
    color: var(--collection-1-black);
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
}

.input-note {
    position: absolute;
    height: 21px;
    left: 0;
    font-family: "Poppins-Light", Helvetica, sans-serif;
    font-weight: 300;
    color: var(--collection-1-black);
    font-size: 14px;
    letter-spacing: 0;
    line-height: normal;
}

.label-container {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.exclamationmark {
    position: relative;
    width: 14px;
    height: 14px;
}

.input-field-position {
    position: absolute;
    width: 528px;
    height: 39px;
    left: 0;
    top: 31px;
}

.custom-input {
    width: 100%;
    height: 100%;
    padding: 8px 10px;
    font-family: "Poppins-Regular", Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--collection-1-black);
    background-color: var(--collection-1-white);
    border: 0.5px solid var(--collection-1-grey);
    outline: none;
    appearance: none;
    /* Hides default arrow in some browsers */
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.custom-input::placeholder {
    color: var(--collection-1-grey);
}

.custom-select {
    background-image: url("../images/chevron-down.svg");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 14px;
}

/* Ensure dropdown expands properly */
.custom-select:focus {
    border-color: var(--collection-1-black);
}

.line {
    background-color: var(--collection-1-mid-grey);
    position: absolute;
    width: 526px;
    height: 1px;
    left: 0;
}

/* Input field -- end */

.security-check {
    position: absolute;
    height: 24px;
    top: 1670px;
    left: 0;
    font-family: "Poppins-Regular", Helvetica, sans-serif;
    font-weight: 400;
    color: var(--collection-1-black);
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
}

.robot-tick {
    position: absolute;
    width: 326px;
    height: 91px;
    top: 1702px;
    left: 0;
}

.robot-tick-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 324px;
    height: 91px;
    background-color: #f9f9f9;
    border-radius: 5px;
    border: 1px solid #d5d5d5;
    padding: 19px;
}

.robot-left {
    display: flex;
    align-items: center;
    gap: 14px;
    /* Space between checkbox and text */
}

.robot-tick-text {
    font-family: "Poppins-Medium", Helvetica, sans-serif;
    font-weight: 500;
    color: var(--collection-1-black);
    font-size: 14px;
}

.reCAPTCHA-icon-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.reCAPTCHA-image {
    width: 64px;
    height: 64px;
    object-fit: cover;
}

.reCAPTCHA-text {
    font-family: "Poppins-Regular", Helvetica, sans-serif;
    font-weight: 400;
    color: #ababab;
    font-size: 8px;
    text-align: center;
    margin-top: 2px;
}

.registration-local .agreement {
    position: absolute;
    width: 532px;
    height: 28px;
    top: 1822px;
    left: 0px;
}

/* Tick Box Component -- Start -- */
.agree-tick {
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    position: relative;
}

.tick-box {
    width: 28px;
    height: 28px;
    border: 1px solid #c1c1c1;
    appearance: none;
    cursor: pointer;
    position: relative;
    border-radius: 0px;
    margin: 0;
    padding: 0;
}

.tick-box:checked {
    background-color: #007bff;
    border-color: #007bff;
}

.tick-box:checked::after {
    content: "✔";
    font-size: 18px;
    color: white;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
}

.i-have-agree-to-the {
    font-family: "Poppins-Regular", Helvetica, sans-serif;
    font-weight: 400;
    color: var(--collection-1-black);
    font-size: 16px;
    line-height: normal;
    position: static;
    width: auto;
}

/* Tick Box Component -- End -- */


/* ========================================================
  BUTTON STYLES (APPLY TO ALL PAGES)
======================================================== */
.btn {
    all: unset;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 332px;
    height: 48px;
    border-radius: 10px;
    cursor: pointer;
    font-family: "Poppins-SemiBold", Helvetica, sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    letter-spacing: 0.06px;
    transition: background-color 0.3s ease-in-out, border 0.3s ease-in-out;
}

.btn:hover {
    opacity: 0.9;
}

/* Blue button */
.btn-primary {
    background-color: var(--collection-1-blue);
    color: var(--collection-1-white);
    border: 2px solid transparent;
}

.btn-primary:hover {
    background-color: var(--collection-1-blue);
    border: 2px solid transparent;
}

/* Grey button */
.btn-secondary {
    background-color: var(--collection-1-white);
    color: var(--collection-1-grey);
    border: 2px solid var(--collection-1-grey);
}

.btn-secondary:hover {
    background-color: var(--collection-1-blue);
    color: var(--collection-1-white);
}

.btn-secondary2 {
    background-color: var(--collection-1-white);
    color: var(--collection-1-black);
    border: 3px solid var(--collection-1-grey);
}

.btn-secondary2:hover {
    color: var(--collection-1-blue);
    border: 3px solid var(--collection-1-blue);
}

/* Outline button */
.btn-outline {
    background-color: var(--collection-1-white);
    border: 1px solid var(--collection-1-blue);
    color: var(--collection-1-blue);
}

.btn-outline:hover {
    background-color: var(--collection-1-blue);
    color: white;
}

/* Login button at header*/
.btn-header-login {
    width: auto;
    height: 36px;
    border-radius: 5px;
    font-family: "Poppins-Normal", Helvetica, sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    letter-spacing: 0.06px;
    right: 68px;
}

/* Login button at header*/

.btn-cancel {
    width: 160px;
    height: 47px;
    border-radius: 5px;
    font-family: "Poppins-Medium", Helvetica, sans-serif;
    font-weight: 500;
    font-size: 16px;
    padding: 16px 26px;
    text-align: center;
    letter-spacing: 0.00px;
    border: 0.5px solid var(--collection-1-grey);
}

.btn-cancel:hover {
    border: 0.5px var(--collection-1-grey);
}

.btn-submit {
    width: 160px;
    height: 47px;
    border-radius: 5px;
    font-family: "Poppins-Medium", Helvetica, sans-serif;
    font-weight: 500;
    font-size: 16px;
    padding: 16px 26px;
    text-align: center;
    letter-spacing: 0.00px;
}

.btn-proceed-to-homepage {
    width: fit-content;
    height: 47px;
    border-radius: 5px;
    font-family: "Poppins-Medium", Helvetica, sans-serif;
    font-weight: 500;
    font-size: 16px;
    padding: 16px 26px;
    text-align: center;
    letter-spacing: 0.00px;
}

/* Red button */
.btn-danger {
    background-color: red;
    color: white;
    border: 2px solid darkred;
}

.btn-danger:hover {
    background-color: darkred;
}

/* Small button */
.btn-sm {
    width: 154px;
    height: 48px;
}

/* Large button */
.btn-lg {
    width: 400px;
    height: 56px;
}

/* ========================================================
  INPUT STYLES (APPLY TO ALL PAGES)
======================================================== */
.input-field {
    box-sizing: border-box;
    width: 332px;
    height: 48px;
    border: 1px solid #C4C4C4;
    border-radius: 10px;
    padding: 10px 15px;
    font-size: 16px;
    color: var(--collection-1-grey);
    font-family: "Poppins-SemiBold", Helvetica, sans-serif;
    outline: none;
    transition: border-color 0.3s ease-in-out;
}

.input-field:focus {
    border-color: var(--collection-1-blue);
}

/* ========================================================
  HOME PAGE STYLES
======================================================== */
.d {
    background-color: #ffffff;
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    height: auto;
}

.d .div {
    /* overflow: hidden; */
    width: 100%;
    position: relative;
    height: auto;
}

/* ========================================================
  LOGIN PAGE STYLES
======================================================== */
body.login-page {
    background-image: url("../images/background.png");
    background-size: cover;
    /* background-position: center; */
    background-repeat: no-repeat;
    background-color: #ffffff;
    /* Fallback color */
}

.Login {
    display: flex;
    flex-direction: row;
    justify-content: center;
    min-width: 410px;
}

.Login .div {
    background-color: transparent;
    position: relative;
    width: auto;
}

.Login .overlap-wrapper {
    width: 100%;
    height: auto;
}

.Login .overlap {
    position: relative;
    height: 832px;
    width: 100%;
    /* background-image: url("../images/background.png");
  background-size: cover;
  background-position: 50 50%;
  background-repeat: no-repeat; */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 0 13%;
    flex-wrap: wrap;
}

/*----------LOGIN: Welcome Clause----------*/

.Login .welcome-clause {
    position: relative;
    width: 465px;
    height: auto;
    flex: 1;
}

body[data-lang="en"] .welcome-clause {
    width: 465px;
}

body[data-lang="bm"] .welcome-clause {
    width: 584px;
}

.Login .overlap-group {
    position: relative;
    height: 198px;
}

.Login .group {
    position: absolute;
    width: auto;
    top: 49px;
    left: 63px;
    height: 119px;
}

.Login .text1 {
    font-family: "Poppins-ExtraBold", Helvetica, sans-serif;
    font-weight: 800;
    color: var(--collection-1-blue);
    font-size: 32px;
    letter-spacing: 0;
}

.Login .text2 {
    font-family: "Poppins-ExtraBold", Helvetica, sans-serif;
    font-weight: 600;
    color: var(--collection-1-grey);
    font-size: 24px;
    letter-spacing: 0;
}

.Login .text3 {
    font-family: "Poppins-Medium", Helvetica, sans-serif;
    font-weight: 500;
    color: #000000;
    font-size: 24px;
    letter-spacing: 0;
}

.Login .text-wrapper {
    position: absolute;
    height: 48px;
    top: 0;
    left: 0;
    font-family: "Poppins-ExtraBold", Helvetica, sans-serif;
    font-weight: 800;
    color: var(--collection-1-blue);
    font-size: 32px;
    /* font-size: clamp(16px, 32px, 32px);  */
    white-space: nowrap;
    letter-spacing: 0;
}

.Login .text-wrapper2 {
    position: absolute;
    height: 48px;
    top: 41px;
    left: 0;
    font-family: "Poppins-ExtraBold", Helvetica, sans-serif;
    font-weight: 600;
    color: var(--collection-1-grey);
    font-size: 24px;
    /* font-size: clamp(16px, 32px, 32px);  */
    white-space: nowrap;
    letter-spacing: 0;
}

.Login .p {
    position: relative;
    width: auto;
    height: 68px;
    top: 81px;
    left: 0;
    font-family: "Poppins-Medium", Helvetica, sans-serif;
    font-weight: 500;
    color: #000000;
    font-size: 24px;
    letter-spacing: 0;
}

.Login .kenyalang {
    position: relative;
    width: auto;
    height: 100px;
    object-fit: cover;
}

/*----------LOGIN: Login Option----------*/

.Login .login-option {
    position: relative;
    width: 400px;
    height: 540px;
    background-color: #ffffff;
    border-radius: 15px;
    border: 0.3px solid;
    border-color: #d9d9d9;
    box-shadow: 5px 5px 15px #00000040;
    flex-shrink: 0;
}

.Login .login-selector {
    position: absolute;
    width: 364px;
    height: 34px;
    top: 17px;
    left: 19px;
}

.login-selector {
    display: flex;
    width: 364px;
    height: 34px;
}

.tab {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    color: var(--collection-1-grey);
    font-family: "Poppins-Regular", Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

.tab.active {
    color: var(--collection-1-blue);
    font-weight: 600;
    border-bottom: 2px solid var(--collection-1-blue);
}

/*----------LOGIN: Login Option - SarawakID App----------*/

.Login .scan-with-sarawakid {
    position: absolute;
    width: 364px;
    height: 48px;
    top: 97px;
    left: 19px;
    font-family: "Poppins-SemiBold", Helvetica, sans-serif;
    font-weight: 600;
    color: #1d1d1f;
    font-size: 16px;
    text-align: center;
    letter-spacing: 0.06px;
    line-height: normal;
}

.Login .overlap-group-wrapper {
    position: absolute;
    width: 405px;
    height: 126px;
    top: 414px;
    left: 0;
}

.Login .overlap-3 {
    position: relative;
    width: 401px;
    height: 126px;
    background-color: var(--collection-1-blue);
    border-radius: 0px 0px 15px 15px;
    box-shadow: 5px 5px 15px #00000040;
}

.Login .qr-login-text-wrapper-4 {
    position: absolute;
    width: 364px;
    height: 24px;
    top: 31px;
    left: 19px;
    font-family: "Poppins-Regular", Helvetica, sans-serif;
    font-weight: 400;
    color: var(--collection-1-white);
    font-size: 16px;
    text-align: center;
    letter-spacing: 0.06px;
    line-height: normal;
    text-decoration: underline;
}

.Login .qr-login-text-wrapper-5 {
    position: absolute;
    width: 364px;
    height: 24px;
    top: 67px;
    left: 19px;
    font-family: "Poppins-Medium", Helvetica, sans-serif;
    font-weight: 500;
    color: var(--collection-1-white);
    font-size: 16px;
    text-align: center;
    letter-spacing: 0.06px;
    line-height: normal;
    text-decoration: underline;
}

.Login .sarawakpass-QR {
    position: absolute;
    width: 130px;
    height: 130px;
    top: 192px;
    left: 136px;
    background-color: #ffffff;
    border-radius: 20px;
    border: 3px solid;
    border-color: var(--collection-1-blue);
}

.Login .sarawakpass {
    position: relative;
    width: 110px;
    height: 110px;
    top: 7px;
    left: 7px;
    background-image: url("../images/sarawakid-2.png");
    background-size: cover;
    background-position: 50% 50%;
}

/*----------LOGIN: Login Option - Password Login----------*/

.Login .password-login-text-wrapper-4 {
    position: absolute;
    width: 346px;
    height: 24px;
    font-family: "Poppins-SemiBold", Helvetica, sans-serif;
    font-weight: 600;
    color: #1d1d1f;
    left: 37px;
    letter-spacing: 0.06px;
    line-height: normal;
}

.Login .password-login-text-wrapper-5 {
    position: absolute;
    width: 166px;
    height: 24px;
    top: 350px;
    left: 201px;
    font-family: "Poppins-Regular", Helvetica, sans-serif;
    font-weight: 400;
    color: var(--collection-1-blue);
    font-size: 16px;
    text-align: right;
    letter-spacing: 0.06px;
    line-height: normal;
    text-decoration: underline;
}

.Login .password-login-text-wrapper-6 {
    position: absolute;
    width: 346px;
    height: 21px;
    top: 139px;
    font-family: "Poppins-Regular", Helvetica, sans-serif;
    font-weight: 400;
    color: #1d1d1f;
    font-size: 14px;
    left: 37px;
    letter-spacing: 0.06px;
    line-height: normal;
}

.Login .line {
    position: absolute;
    width: 332px;
    height: 1px;
    top: 408px;
    left: 35px;
}

/* .Login .secure-image {
    position: absolute;
    width: 64px;
    height: 64px;
    top: 172px;
    left: 37px;
    background-image: url("../images/secure/image3.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 10px;
} */

.Login .secure-word {
    position: absolute;
    width: 253px;
    height: 64px;
    top: 172px;
    left: 114px;
    background-image: url("../images/example_secure_word.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 10px;
}

/* Responsive Design */
@media screen and (max-width: 1460px) {
    .Login .text-wrapper {
        font-size: 28px;
    }

    .Login .text-wrapper2 {
        font-size: 20px;
    }

    .Login .p {
        font-size: 20px;
    }

    .Login .overlap {
        flex-direction: column;
        height: auto;
        padding-top: 120px;
        width: 100%;
        margin: auto;
        gap: 50px;
    }
}

@media screen and (max-width: 830px) {
    .Login .overlap {
        width: 830px;
    }
}

/* ========================================================
  REGISTER PAGE STYLES
======================================================== */

.registration-local {
    background-color: #ffffff;
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
}

.registration-local .group {
    width: 100%;
}

.registration-local .text-wrapper-2 {
    position: absolute;
    width: 587px;
}

.registration-local .note {
    position: absolute;
    width: 974px;
    height: 175px;
    top: 188px;
    left: 0;
    background-color: #f0f0f0;
    border-radius: 10px;
}

.registration-local .note-text-wrapper {
    position: absolute;
    width: 74px;
    height: 24px;
    top: 24px;
    left: 40px;
    font-family: "Poppins-SemiBold", Helvetica, sans-serif;
    font-weight: 600;
    color: var(--collection-1-black);
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
    margin-bottom: 10px;
}

.registration-local .note-content {
    position: absolute;
    width: 896px;
    top: 54px;
    left: 40px;
    right: 40px;
    font-family: "Poppins-Regular", Helvetica, sans-serif;
    font-weight: 400;
    color: var(--collection-1-black);
    font-size: 16px;
    letter-spacing: 0;
    line-height: 1.6;
    margin: 0;
}

.registration-local .bold-text {
    font-family: "Poppins-SemiBold", Helvetica, sans-serif;
    font-weight: 600;
    color: #000000;
}

.registration-local .interested-sarawakid-corporate-group {
    position: absolute;
    width: 550px;
    height: 50px;
    top: 385px;
    left: 0;
}

.registration-local .interested-sarawakid-corporate-section {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 550px;
}

.registration-local .interested-sarawakid-corporate-icon {
    width: 42px;
    height: 50px;
}

.registration-local .interested-in {
    font-family: "Poppins-Regular", Helvetica, sans-serif;
    font-weight: 400;
    color: var(--collection-1-black);
    font-size: 16px;
    line-height: normal;
}

.registration-local .i-am-a {
    top: 496px;
}

.registration-local .group-option-wrapper {
    top: 527px;
}

.registration-local .input-label-position {
    top: 682px;
}

.registration-local .input-note {
    top: 76px;
}

.registration-local .line {
    top: 1192px;
}

@media screen and (max-width: 1280px) {
    .registration-local .group {
        width: 90%;
    }

    .registration-local .note {
        width: 95%;
        height: 190px;
    }

    .registration-local .note-content {
        width: auto;
    }
}

@media screen and (max-width: 693px) {
    .registration-local .group {
        width: 594px;
    }

    .registration-local .note {
        width: 526px;
        height: 230px;
    }

    .registration-local .note-content {
        width: auto;
    }

    .registration-local .interested-sarawakid-corporate-group {
        top: 425px;
    }

}

/* ========================================================
  REGISTER PAGE (CORPORATE) STYLES
======================================================== */

.registration-corporate {
    background-color: #ffffff;
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
}

.registration-corporate .text-wrapper-2 {
    position: relative;
    height: auto;
    width: 100%;
}

.registration-corporate .div {
    height: 974px;
}

.registration-corporate .group {
    width: 988px;
    height: 732px;
}

.registration-corporate .documentation {
    width: 1132px;
    height: 447px;
    margin-top: 77px;
    /* Ensures 29px spacing */
}

.registration-corporate .btn.btn-primary.btn-proceed-to-homepage {
    position: relative;
    top: 84px;
}


@media screen and (max-width: 1280px) {
    .registration-corporate .documentation {
        width: 90%;
        height: auto;
    }

    .registration-corporate .group {
        width: 90%;
    }

}



/* ========================================================
  RECOVER PAGE STYLES
======================================================== */

.recover {
    background-color: #ffffff;
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
}

.recover .div {
    height: 1275px;
}

.recover .group {
    width: 594px;
    height: 1138px;
}

.recover .text-wrapper-2 {
    width: 100%;
}

.recover .i-am-a {
    top: 165px;
}

.recover .group-option-wrapper {
    top: 196px;
}

.recover .i-would-like-to {
    top: 360px;
}

.recover .group-option2-wrapper {
    top: 391px;
}

.recover .recover-using {
    top: 555px;
}

.recover .group-option3-wrapper {
    top: 586px;
}

.recover .input-label-position.label-m-1 {
    top: 750px;
}

.recover .input-label-position.label-n-1 {
    top: 750px;
}

.recover .input-label-position.label-n-2 {
    top: 846px;
}

.recover .input-label-position.label-n-3 {
    top: 942px;
}

.recover .security-check {
    top: 862px;
}

.recover .robot-tick {
    top: 893px;
}

.recover .robot-tick-group {
    width: 527px;
}

.recover .btn.btn-secondary.btn-cancel {
    position: absolute;
    top: 1043px;
    left: 191px;
    width: 160px;
    height: 47px;
}

.recover .btn.btn-primary.btn-submit {
    position: absolute;
    top: 1043px;
    left: 368px;
    width: 160px;
    height: 47px;
}

.recover-2 {
    background-color: #ffffff;
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
}

.recover-2 .div {
    /* height: 832px;
    width: 1280px; */
    width: 100%;
    height: auto;
    max-width: 1280px;
    min-height: 400px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 24px;
}

.recover-2 .group {
    height: 396px;
    width: calc(100% - 25%);
}

.recover-2 .p {
    width: 100%;
    height: 24px;
    font-size: 16px;
}

.recover-2 .text-wrapper,
.recover-2 .text-wrapper-2 {
    /* width: 536px; */
    width: 100%;
}

.recover-2 .text-wrapper-2.recover-success {
    left: 50px;
    width: 80%;
}

.recover-2 .text-wrapper-3 {
    position: absolute;
    width: 413px;
    height: 72px;
    top: 209px;
    left: 244px;
    font-family: "Poppins-Regular", Helvetica, sans-serif;
    font-weight: 400;
    color: var(--collection-1-black);
    font-size: 16px;
    letter-spacing: 0;
    line-height: 1.5;
}

.recover-2 .p-bold {
    font-family: "Poppins-SemiBold", Helvetica, sans-serif;
    font-weight: 600;
}

.recover-2 .p.p2 {
    top: 514px;
}

.recover-2 .btn.btn-primary.btn-submit {
    position: absolute;
    top: 389px;
    left: 381px;
}

.recover-2 .btn.btn-primary.btn-proceed-to-homepage {
    position: absolute;
    top: 324px;
    left: 244px;
    height: 47px;
}

.recover-2 .btn.btn-primary.btn-proceed-to-homepage.recover-success {
    top: 259px;
    left: 0px;
}

.recover-2 .sarawakid-QR {
    position: absolute;
    width: 200px;
    height: 200px;
    top: 196px;
    left: 0;
    background-color: #ffffff;
    border-radius: 20px;
    border: 3px solid;
    border-color: var(--collection-1-blue);
}

.recover-2 .resend-OTP-in {
    position: absolute;
    width: 357px;
    height: 21px;
    top: 330px;
    left: 381px;
    font-family: "Poppins-Regular", Helvetica, sans-serif;
    font-weight: 400;
    color: var(--collection-1-black);
    font-size: 14px;
    letter-spacing: 0;
    line-height: normal;
}

.recover-2 .sarawakid {
    position: relative;
    width: 169px;
    height: 169px;
    top: 12px;
    left: 12px;
    background-image: url("../images/sarawakID-3.png");
    background-size: cover;
    background-position: 50% 50%;
}

.recover-2 .OTP {
    position: absolute;
    height: 24px;
    top: 288px;
    left: 313px;
    font-family: "Poppins-Regular", Helvetica, sans-serif;
    font-weight: 400;
    color: var(--collection-1-black);
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
}

.recover-2 .phone-sms {
    position: absolute;
    width: 180px;
    height: 250px;
    top: 226px;
    left: 83px;
}

.recover-2 .mail-icon {
    position: absolute;
    width: 180px;
    height: 144px;
    top: 265px;
    left: 66px;
}

.recover-2 .green-tick-icon {
    position: absolute;
    top: 63px;
    width: 32px;
    height: 32px;
}

.recover-2 .input-field-position {
    position: absolute;
    width: 357px;
    height: 39px;
    top: 279px;
    left: 381px;
}

@media screen and (max-width: 1280px) {
    /* .recover-2 .group {
        width: 700px;
    } */

    /* .recover-2 .p {
        width: 632px;
    } */

    .recover-2 .input-field-position {
        width: 251px;
    }

    .recover-2 .resend-OTP-in {
        width: 251px;
    }
}

@media screen and (max-width: 700px) {
    /* .recover-2 .group {
        width: 594px;
    } */

    /* .recover-2 .p {
        width: 526px;
    } */

    .recover-2 .phone-sms {
        width: 45px;
        height: 62.5px;
        top: 195px;
        left: 0px;
    }

    .recover-2 .mail-icon {
        width: 45px;
        height: 36px;
        top: 215px;
        left: 0px;
    }

    .recover-2 .text-wrapper-3 {
        width: 313px;
    }

    .recover-2 .OTP {
        left: 0px;
    }

    .recover-2 .input-field-position {
        left: 68px;
    }

    .recover-2 .resend-OTP-in {
        left: 68px;
    }

    .recover-2 .btn.btn-primary.btn-submit {
        left: 68px;
    }
}

/* ========================================================
  USER PROFILE PAGE STYLES
======================================================== */

.user-profile {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.user-profile .container-fluid {
    background-image: url("../images/myworkspace_banner2.jpg");
    width: 100%;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}

.user-profile .pad {
    padding-top: 51px;
}

.user-profile .custom-text {
    font-family: "Poppins-Regular", Helvetica, sans-serif !important;
    font-weight: 600 !important;
    color: var(--collection-1-black) !important;
    font-size: 30px !important;
    letter-spacing: 0;
    line-height: normal;
}

.user-profile .nav-link {
    font-family: "Poppins-Regular", Helvetica, sans-serif;
    color: black !important;
    font-weight: bold;
    background-color: var(--collection-1-white);
    border-top: 4px solid var(--collection-1-grey) !important;
    border-left: 4px solid var(--collection-1-grey) !important;
    border-right: 4px solid var(--collection-1-grey) !important;
    margin-right: 8px;
}

.user-profile .nav-link.active {
    color: var(--collection-1-blue) !important;
    background-color: var(--collection-1-white) !important;
    border-top: 4px solid var(--collection-1-blue) !important;
    border-left: 4px solid var(--collection-1-blue) !important;
    border-right: 4px solid var(--collection-1-blue) !important;
}

.user-profile .nav-link:hover {
    color: var(--collection-1-blue) !important;
    border-top: 4px solid var(--collection-1-blue) !important;
    border-left: 4px solid var(--collection-1-blue) !important;
    border-right: 4px solid var(--collection-1-blue) !important;
    border-bottom: transparent;
}

@media screen and (max-width: 992px) {
    .user-profile .nav-link {
        border-bottom: 4px solid var(--collection-1-grey) !important;
        margin-bottom: 8px;
        border-radius: 0px;
    }

    .user-profile .nav-link.active {
        border-bottom: 4px solid var(--collection-1-blue) !important;
    }

    .user-profile .nav-link:hover {
        border-bottom: 4px solid var(--collection-1-blue) !important;
    }
}

@media screen and (max-width: 182px) {
    .user-profile .container-fluid {
        width: 182px;
    }
}

.note-box-profile {
    background-color: #f8d7da;
    color: #721c24;
    padding: 1% 2%;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.note-text-wrapper1-profile {
    font-family: "Poppins-SemiBold", Helvetica, sans-serif;
    font-weight: 600;
    color: var(--collection-1-black);
    font-size: clamp(0.9rem, 5vw, 1rem);
    letter-spacing: 0;
    line-height: normal;
    margin: 0.5rem 2rem 0.5rem 0;
}

.note-text-profile {
    font-family: "Poppins-Regular", Helvetica, sans-serif;
    font-weight: 400;
    color: var(--collection-1-black);
    font-size: clamp(0.9rem, 5vw, 1rem);
    letter-spacing: 0;
    line-height: 1.6;
    margin: 0.5rem 0 0 0;
}

.verifyAccountQrWrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 20px;
    font-family: "Poppins-Regular", Helvetica, sans-serif;
    font-weight: 400;
    color: var(--collection-1-black);
    font-size: clamp(0.9rem, 5vw, 1rem);
    letter-spacing: 0;
    line-height: normal;

}

.verify-account-qrCodeCanvas {
    width: 100%;
    text-align: center;
}

.qr-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.overlay-qr-verify-account {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    background-color: rgba(255, 255, 255, 0.85);
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 10;
}


.verify-account-qr-wrapper {
    position: relative;
}