﻿

/* Utility classes for colors */
.color-primary {
    color: var(--color-primary) !important;
}

.color-secondary {
    color: var(--color-secondary) !important;
}

.color-gray {
    color: var(--color-gray) !important;
}

.color-black {
    color: var(--color-black) !important;
}

.btn-primary {
    background-color: var(--color-primary) !important;
}

body, html {
    height: 100%;
    margin: 0;
    font-family: 'Montserrat', sans-serif!important;
    display: flex;
    flex-direction: column;
}

.bg-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.bg-image .row {
    width: 100%!important;
    padding: 0px 20px!important;
    height: 100%!important;
}

/* Overlay for better readability (optional) */
.bg-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    filter: brightness(0.2);
    z-index: 1;
    filter: blur(0px) brightness(0.2); /* Apply blur and brightness */
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
}

/* Ensure the content is above the overlay */
.content-container {
    position: relative;
    z-index: 2;
    max-width: 100vw;
    height: calc(100vh - 150px);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    /* align-content: flex-end; */
    justify-content: center;
    align-items: end;
    width: calc(100vw - 200px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .left-container {
        display: none; /* Hide the left container on small screens */
    }
}

/* Logo Styling */
.logo {
    max-width: 150px;
    margin-bottom: 1.5rem;
}

/* Social Buttons */
.social-btn {
    width: auto; /* Adjusted to auto for smaller buttons */
    padding: 0.375rem 0.75rem; /* Default Bootstrap padding for btn-sm */
}

@media (min-width: 576px) {
    .social-btn {
        width: 40px; /* Fixed width on larger screens */
    }
}

.form-control, .btn {
    border-radius: 0px !important;
}

/* Footer Styling */
.footer-wrapper {
    background-color: white;
    width: 100vw;
    padding: 5px 20px;
    display: flex;
    justify-content: flex-end; /* Align content to the end (right) */
    align-items: center;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.footer-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.footer-text {
    color: #000000;
    margin: 0;
    font-size: 0.875rem; /* Smaller font size */
    margin-right: 10px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

    .footer-links li {
        margin: 0 5px;
        display: flex;
        align-items: center;
        font-size: 0.875rem; /* Smaller font size */
    }

        .footer-links li::after {
            content: "|";
            margin-left: 5px;
            color: #000000;
        }

        .footer-links li:last-child::after {
            content: "";
        }

    .footer-links a {
        color: #000000;
        text-decoration: none;
        font-size: 0.875rem; /* Smaller font size */
    }

        .footer-links a:hover {
            color: var(--color-primary);
        }

/* Left Container */
.left-container {
    display: flex;
    align-items: end;
    justify-content: center;
    background-color: transparent;
}

/* Right Container */
.right-container {
    background-color: hsla(0, 0%, 100%, 0.9);
    padding: 3rem!important;
    border-radius: 5px;
    height: fit-content;
    align-self: center;
}

img.logo {
    margin:0
}

/* Optional: Adjust carousel height */
.carousel-inner img {
    height: 100%;
    object-fit: cover;
}

@media (min-width: 991.98px) and (max-width: 1475px) {
    .right-container {
        width: 30vw!important;
    }

    .left-container {
        width: 60vw;
    }

    .bg-image .row {
        justify-content: space-between!important;
        flex-wrap: nowrap!important;
    }
}

/* Optional: Adjust footer for small screens */
@media (max-width: 576px) {
    .footer-wrapper {
        display: none; /* Hide footer on small screens */
    }
}

/* Hide footer on tablet (Medium Screens) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .footer-wrapper {
        display: none; /* Hide footer on tablet screens */
    }

    .right-container {
        width: 65%!important;
    }

    
}

/* Style the horizontal rule with text */
.d-flex.align-items-center.my-4 hr {
    border: none;
    border-top: 1px solid #ccc;
}

.d-flex.align-items-center.my-4 span {
    color: #939598;
    font-size: 0.875rem;
}

/* Adjustments for tablet image */
@media (min-width: 768px) and (max-width: 991.98px) {
    .right-container .img-fluid {
        max-width: 125px;
        margin-bottom: 1.5rem;
    }

    img {
        filter: unset !important;
    }

    .bg-image .row {
        width: 100%!important;
        display: flex!important;
        flex-wrap: nowrap!important;
        flex-direction: row!important;
        justify-content: center!important;
    }
}

/* Button Hover Effects */
body > div > div > div > div.col-md-9.right-container > form > button {
    background-color: transparent !important;
    color: var(--color-primary);
}

    body > div > div > div > div.col-md-9.right-container > form > button:hover {
        background-color: var(--color-primary) !important;
        color: white;
    }

/* Adjust background for small screens */
@media (max-width: 767.98px) {
    .bg-image::before {
        /* all: unset; */
        /* background-color: white; */
    }

    .bg-image {
        background-image: none;
        /* filter: unset!important; */
    }

    body > div > div > div > div.col-md-9.right-container > form > div.d-block.d-lg-none.text-start.mt-4 {
        width: 125px;
    }
}

@media (min-height: 0px) and (max-height: 732px) {
    body > footer {
        display: none !important; /* Hide footer on screens with a height of 690px or less */
    }
}

img.leftlogo {
    filter: brightness(0) invert(1) !important;
}


@media (min-width: 0) and (max-width: 561px) {
    div.content-container {
        width: 100vw!important;
        height: unset!important;
    }

    .right-container {
        height: 100vh!important;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        align-content: center;
    }

    .bg-image .row {
        padding: 0!important;
        width: 100vw!important;
    }
}

html {
    background-color: white;
}




