
@font-face {
    font-family: 'Thicccboi';
    src: url('../Thicccboi/Webfont/Thicccboi-Medium.woff2') format('woff2'),
        url('../Thicccboi/Webfont/Thicccboi-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Thicccboi';
    src: url('../Thicccboi/Webfont/Thicccboi-Bold.woff2') format('woff2'),
        url('../Thicccboi/Webfont/Thicccboi-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}


@font-face {
    font-family: 'Thicccboi';
    src: url('../Thicccboi/TTF/Thicccboi-Thin.ttf') format('truetype');
    font-weight: 100;
    /* Thin */
    font-style: normal;
}

@font-face {
    font-family: 'Thicccboi';
    src: url('../Thicccboi/TTF/Thicccboi-Regular.ttf') format('truetype');
    font-weight: 400;
    /* Regular */
    font-style: normal;
}

@font-face {
    font-family: 'Thicccboi';
    src: url('../Thicccboi/TTF/Thicccboi-SemiBold.ttf') format('truetype');
    font-weight: 600;
    /* Semi-Bold */
    font-style: normal;
}


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Thicccboi", sans-serif;
}

body {
    max-width: 1440px;
    margin: 0 auto;
    overflow-y: hidden;
    font-family: "Thicccboi", sans-serif;
}

.kyc-container {
    display: flex;
    height: 100vh;
    max-width: auto;
}

.kyc-left-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 60px 50px 72px;
    width: 70%;
}

.main-logo {
    width: fit-content;
    height: 48px;
    align-self: baseline;
    margin-bottom: 30px;
}

.left-image {
    width: 500px;
    height: 500px;
    margin-bottom: 50px;
}

.left-bottom-container {
    position: absolute;
    bottom: 2px;
    display: flex;
    justify-content: space-between;
}

.left-bottom-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: right;
    gap: 15px;
    margin-left: 100px;
}

.kyc-left-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    gap: 65px;
}

.mobile {
    display: none;
}

.kyc-left-footer,
.kyc-left-footer a {
    font-size: 14px;
    font-weight: 400;
    color: #353535;
    text-decoration: none;
}

.right-section {
    background: url("./images/right-bg.jpg") no-repeat;
    background-size: cover;
    height: 100%;
    max-height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: auto;
    overflow-x: hidden;
    position: relative;
    left: 0;
    margin-bottom: 50px;
}

.right>div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    text-align: center;
    background-color: white;
    border-radius: 4px;
    padding: 20px 30px;
    width: 70%;
    max-width: 400px;
    margin-bottom: 20px;
}

.flyover {
    display: none;
}

.form-container {
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 30px 20px 20px 20px;
    position: absolute;
    width: 520px;
    /* height: 100%; */
    /* margin-bottom: 20px; */
    height: 785px;
    left: calc(52% - 560px/2);
    top: calc(33% - 420px/2);
    background: #FFFFFF;
    border-radius: 4px;
    box-shadow: 0px 0px 14.9px 1px #1111110D;
    /* margin-bottom: 50px; */
}

.login-header {
    font-family: "Thicccboi", sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 21px;
    text-align: center;
    color: #353535;
    /* gap: 10px; */
}

.login-description {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    color: #808080;
}

.login-navigate {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.login-navigate a {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    text-decoration: underline;
    color: #CC33CC;
}

.first-form-row {
    display: flex;
    gap: 1rem;
    margin-top: 25px;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="date"] {
    padding: 10px;
}

input:focus {
    outline: #6366f1;
}

input::placeholder {
    font-weight: 400;
    font-size: 16px;
    color: #444A584D;
    line-height: 14px;
    font-style: italic;
}

.required {
    color: #f87171;
}

input,
select {
    padding: 8px;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
}

input:focus,
select:focus {
    outline: none;
}

.error-message {
    color: #C91301;
    font-size: 12px;
    margin-top: 5px;
    margin-bottom: 15px;
}

.phone-input {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    width: 100%;
    background-color: #fff;
}

.country-select-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-right: 1px solid #333;
}

.flag-image {
    width: 24px;
    height: 16px;
    pointer-events: none;
    margin-left: 10px;
}

.custom-select-container {
    position: relative;
    display: flex;
    align-items: center;
}

#country-select {
    appearance: none;
    border: none;
    font-size: 1rem;
    background-color: transparent;
    padding-right: 1.5rem;
    margin-top: 10px;
    cursor: pointer;
}

.custom-arrow {
    position: absolute;
    right: 0.3rem;
    pointer-events: none;
    font-size: 1.2rem;
    color: #000;
}

#phone {
    border: none;
    font-size: 1rem;
    flex: 1;
    outline: none;
    background-color: #fff;
}

.password-group {
    position: relative;
}

.toggle-password,
.confirm-toggle-password {
    position: absolute;
    top: 70%;
    font-size: 12px;
    right: 0.75rem;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.password-container {
    position: relative;
    display: flex;
    align-items: center;
}

select,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"] {
    width: 100%;
    height: 45px;
    border-radius: 8px;
    border: 1px solid #E6E6E6;
    padding: 8px;
    gap: 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #000000;
    outline-color: #CC33CC;
}

input[type="date"] {
    width: 100%;
    height: 45px;
    border-radius: 8px;
    border: 1px solid #E6E6E6;
    gap: 10px;
    box-sizing: border-box;
    color: #000000;
    outline-color: #CC33CC;
}

input::placeholder {
    font-style: italic;
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    color: #444A58;
}

.file-input {
    display: none;
}

.file-name-display {
    color: green;
    margin-top: 10px;
}

.footer-message {
    width: 100%;
    display: flex;
    justify-content: center;
}

.footer-message p {
    font-size: 16px;
    font-weight: 400;
    color: #666666B2;
}

.footer-message a {
    width: 111px;
    height: 24px;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    text-decoration-line: underline;
    color: #CC33CC;
}

form {
    flex-direction: column;
    justify-content: center;
}

label {
    font-family: "Thicccboi", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    color: #353535;
}

.password-container {
    position: relative;
    display: flex;
    align-items: center;
}

.mobile-logo-container {
    display: none;
}

input[type="text"],
select {
    width: 100%;
    height: 45px;
    border-radius: 8px;
    border: 1px solid #E6E6E6;
    padding: 8px;
    gap: 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #000000;
    outline-color: #CC33CC;
}

input::placeholder {
    font-family: "Thicccboi", sans-serif;
    font-style: italic;
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    color: #444A58;
}

input[type="date"] {
    width: 100%;
    height: 45px;
    border-radius: 8px;
    border: 1px solid #E6E6E6;
    padding: 8px;
    gap: 10px;
    box-sizing: border-box;
    color: #000000;
    outline-color: #CC33CC;
}

.upload-label {
    display: inline-block;
    padding: 10px 20px;
    width: 100%;
    height: 45px;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    font-family: "Thicccboi", sans-serif;
    color: blue;
    text-align: right;
}

.file-input {
    display: none;
}

.file-name-display {
    font-family: "Thicccboi", sans-serif;
    color: green;
    margin-top: 10px;
}

button {
    padding: 12px 16px;
    width: 100%;
    background: #CC33CC;
    border-radius: 8px;
    border: none;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    /* margin-top: 16px; */
    color: #FFFFFF;
    cursor: pointer;
    opacity: 1;
}

button:disabled {
    cursor: not-allowed;
    opacity: 0.3;
}

.footer-message {
    width: 100%;
    display: flex;
    justify-content: center;
}

.footer-message p {
    font-size: 16px;
    font-weight: 400;
    color: #666666B2;
}

.footer-message a {
    width: 111px;
    height: 24px;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    text-decoration-line: underline;
    color: #CC33CC;
}


/* responsiveness style for mobile */

@media (max-width: 576px) {
    * {
        box-sizing: border-box;
        padding: 0;
        margin: 0;
        font-family: "Thicccboi", sans-serif;
    }
    .kyc-left-section {
        display: none;
    }
    .main-logo {
        align-self: center;
        margin-bottom: 20px;
    }
    .first-form-row {
        display: flex;
        gap: 1rem;
        margin-top: 2px;
    }
    .form-row {
        display: flex;
        gap: 1rem;
    }
    .mobile-logo-container {
        max-width: 100%;
        margin-bottom: 10px;
    }
    .form-container {
        width: 100%;
        padding: 20px;
        left: 50%;
        background: none;
        top: calc(30% - 420px/2);
    }
    /* .first-form-row,
    .form-row {
        gap: 10px;
    } */
    .submit-button {
        font-size: 14px;
        padding: 10px 12px;
    }
    .footer-message p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    * {
        box-sizing: border-box;
        padding: 0;
        margin: 0;
        font-family: "Thicccboi", sans-serif;
    }
    .kyc-left-section {
        display: none;
    }
    .kyc-container {
        background: url("./images/right-bg.jpg") no-repeat;
        background-size: cover;
    }
    .right-section {
        background: url("./images/right-bg.jpg") no-repeat;
        background-size: cover;
        display: flex;
        justify-content: center;
        align-items: baseline;
    }
    .first-form-row {
        display: flex;
        gap: 1rem;
        margin-top: 2px;
    }
    .form-row {
        display: flex;
        gap: 1rem;
    }
    .login-header {
        font-family: "Thicccboi", sans-serif;
        font-size: 24px;
        font-weight: 600;
        line-height: 21px;
        text-align: center;
        color: #353535;
        gap: 10px;
    }
    .login-description {
        font-family: "Thicccboi", sans-serif;
        font-weight: 400;
        font-size: 14px;
        line-height: 24px;
        text-align: center;
        color: #808080;
    }
    .login-navigate {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
    .login-navigate a {
        font-weight: 400;
        font-size: 14px;
        line-height: 24px;
        color: #CC33CC;
        text-decoration: underline;
    }
    /* .login-header {
        margin-top: 40px;
    } */
    .form-container {
        background: none;
        height: 100%;
        /* width: 80%; */
        top: calc(30% - 420px/2);
    }
    .upload-label,
    .file-input {
        background-color: #fff;
    }
    .login-description {
        font-weight: 400;
        font-size: 14px;
        line-height: 24px;
        text-align: center;
        color: #808080;
    }
    .login-navigate {
        display: flex;
        justify-content: center;
        align-items: center;
        /* gap: 10px; */
    }
    .login-navigate a {
        font-weight: 400;
        font-size: 14px;
        line-height: 24px;
        color: #CC33CC;
    }
    .mobile-logo-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .mobile-logo {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 161px;
        /* height: 30px; */
        /* margin-top: 30px; */
    }
    .mobile {
        display: flex;
        justify-content: space-between;
        gap: 15px;
        /* margin-top: 60px; */
        color: #353535;
        font-weight: 400;
        font-size: 12px;
        /* position: relative;
        bottom: 0; */
    }
    .mobile a {
        text-decoration: none;
        color: #353535;
        font-weight: 400;
        font-size: 12px;
    }
    .mobile div {
        display: flex;
        justify-content: right;
        gap: 10px;
        font-size: 12px;
    }
}


/* Large devices (desktops, 992px and up) */

@media (max-width: 992px) {
    * {
        box-sizing: border-box;
        padding: 0;
        margin: 0;
        font-family: "Thicccboi", sans-serif;
    }
    .kyc-left-section {
        display: none;
    }
    .form-container {
        background: none;
        left: 50%;
        transform: translateX(-50%);
        top: calc(30% - 420px/2);
    }
    .first-form-row {
        display: flex;
        gap: 1rem;
        margin-top: 2px;
    }
    .form-row {
        display: flex;
        gap: 1rem;
    }
    .login-description {
        font-weight: 400;
        font-size: 14px;
        line-height: 24px;
        text-align: center;
        color: #808080;
    }
    .login-navigate {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
    .login-navigate a {
        font-weight: 400;
        font-size: 14px;
        line-height: 24px;
        color: #CC33CC;
        text-decoration: underline;
    }
    .mobile-logo-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .mobile-logo {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 161px;
        height: 30px;
        /* margin-top: 30px; */
    }
    .login-description {
        margin-top: 10px;
        margin-bottom: 20px;
    }
    .mobile {
        display: flex;
        justify-content: space-between;
        /* gap: 15px; */
        margin-top: 70px;
        color: #353535;
        font-weight: 400;
        font-size: 12px;
        position: relative;
        bottom: 0;
    }
    .mobile a {
        text-decoration: none;
        color: #353535;
        font-weight: 400;
        font-size: 12px;
    }
    .mobile div {
        display: flex;
        justify-content: right;
        gap: 10px;
        font-size: 12px;
    }
}