/* General Reset Styles */
@import url('https://fonts.googleapis.com/css2?family=Kantumruy+Pro:ital,wght@0,100..700;1,100..700&display=swap');
* {
    margin: 0;
    box-sizing: border-box;
    padding: 0;
    text-decoration: none;
    font-family: "Kantumruy Pro", sans-serif;
}

/* Login Page Styles */
body.login-page {
    --primary-color: #3572EF;
    --secondary-color: #374151;
    --background-color: #ffffff;
    --divider-color: #E5E7EB;
    background-image: url('../images/login-background.jpg'); /* Background image for login page */
    background-size: cover; /* Ensure the image covers the full screen */
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Profile Page Styles (no background image) */
body.profile-page {
    background-image: none; /* Remove background image on profile page */
    background-color: #f0f2f5; /* Optional: Use a solid color or another background for the profile page */
}

/* Login Page Container */
.container-login {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    height: 50vh;
    gap: 60px;
}

.container-login div:first-child {
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-login img {
    max-width: 200%;
    height: auto;
}

.logo-login-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Logo Section */
.logo-section img {
    max-width: 200px; /* Adjust the size of the logo */
    height: auto;
}

.option-login {
    max-width: 576px;
    padding: 48px;
    background-color: var(--background-color);
    border-radius: 16px;
    font-size: 17px;
    font-weight: 500;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    margin: 0 auto; /* Center the login box */
}

.option-login h1 {
    font-size: 28px; /* Adjust the font size */
    color: #374151;
    margin-bottom: 16px; /* Increase bottom margin */
}

.option-login p {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 24px; /* Adjust margin */
}


.container-button-login {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.container-button-login a {
    display: flex;
    padding: 14px 24px;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    border-radius: 35px;
    background-color: var(--primary-color);
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: var(--background-color);
}

.container-button a {
    color: var(--background-color);
}

/* Responsive Login */
@media (max-width: 768px) {
    .container-login {
        grid-template-columns: 1fr;
        height: 100vh;
        padding: 20px;
    }

    .container div:first-child {
        order: -1;
    }

    .option-login {
        padding: 24px;
    }
}

@media (max-width: 576px) {
    .option-login {
        padding: 16px;
        font-size: 15px;
    }

    .container-button a {
        font-size: 14px;
        padding: 12px 20px;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Kantumruy+Pro:wght@100..700&display=swap');

* {
    margin: 0;
    box-sizing: border-box;
    padding: 0;
    text-decoration: none;
    font-family: "Kantumruy Pro", sans-serif;
}

:root {
    --primary-color: #3572EF;
    --secondary-color: #374151;
    --background-color: #ffffff;
}

body {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f2f5;
}

/* Profile Page Container */
.container-profile {
    width: 600px; /* Container width */
    border-radius: 16px;
    box-shadow: 0px -1px 30px rgba(0, 0, 0, 0.07);
    padding: 50px; /* Padding around content */
    color: var(--secondary-color);
    background-color: var(--background-color);
    margin-top: 20px;
    position: relative; /* Allows for absolute positioning of the logo */
}

.header-profile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.container-profile h2 {
    margin-bottom: 8px;
    font-size: 24px;
    font-weight: 700;
    margin: 0; /* Remove default margin */
}

.container-profile p {
    font-size: 14px;
    color: var(--secondary-color);
    margin-top: 10px;
}

.container-profile p a {
    color: var(--primary-color);
    font-weight: 500;
}

/* eKYC Prompt Styling */
.ekyc-prompt {
    font-size: 14px;
    color: var(--secondary-color);
    margin-top: 20px; /* Increase margin to separate from profile info */
    text-align: left;
    padding: 0 5px;
    display: block; /* Ensure it is on its own line */
}

.ekyc-prompt a {
    color: var(--primary-color);
    font-weight: 300;
}

/* Divider */
.divider {
    width: 100%;
    height: 1px;
    background: #E5E7EB;
    margin: 20px 0;
}

/* Profile Info Layout */
.profile-info {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    padding: 10px 0;
}

.profile-info .label {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 17px;
}

.profile-info .value {
    font-weight: 500;
    font-size: 17px;
}

/* Button Styling */
.button-profile {
    width: 100%;
    background-color: var(--primary-color);
    border-radius: 36px;
    padding: 14px 24px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    margin-top: 10px;
    text-align: center;
}

.button-profile a {
    color: var(--background-color);
}

/* Logo Positioning for Profile Page */
.header-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px; /* Ensure logo height */
}

.header-logo img {
    max-width: 100%;
    height: auto;
}

/* eKYC Logo Positioning */
.ekyc-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 30px; /* Adjust spacing */
}

.ekyc-logo img {
    max-height: 30px; /* Adjust as needed */
    width: auto;
}

/* Responsive Profile */
@media (max-width: 768px) {
    .container-profile {
        padding: 20px;
    }

    .header-profile h2 {
        font-size: 20px;
    }

    .profile-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .container-profile {
        padding: 16px;
    }

    .profile-info {
        grid-template-columns: 1fr;
    }

    .button-profile {
        padding: 12px 20px;
        font-size: 14px;
    }

    .header-logo {
        height: 25px;
    }
}


