﻿body {
    margin: 0;
    height: 100vh;
    display: flex;
    font-family: 'Source Sans Pro', sans-serif;
}

.image-section {
    width: 75%;
    height: 100vh;
}

.login-right {
    width: 25%;
    display: flex;
    justify-content: center;
    justify-content: flex-start;
    background-color: #f4f6f9;
    padding: 20px;
    height: 100vh;
}

.login-box {
    background: #f4f6f9;
    border-radius: 10px;
    padding: 30px;
    max-width: 415px;
    width: 100%;
}

.login-header {
    text-align: center;
    margin-bottom: 20px;
}

    .login-header img {
        width: 80px;
        height: auto;
    }

.btn-primary {
    background-color: #4d79ff;
    border-color: #4d79ff;
}

    .btn-primary:hover {
        background-color: #0039cc;
        border-color: #0039cc;
    }

.login-footer {
    text-align: center;
    font-size: 12px;
    color: #999;
    margin-top: 15px;
}

    .login-footer a {
        color: #007bff;
        text-decoration: underline;
    }

.contact-support-button {
    position: fixed;
    bottom: 45px;
    right: 30px;
    background-color: #003459;
    color: white;
    border: none;
    border-radius: 29%;
    padding: 12px;
    font-size: 29px;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

    .contact-support-button:hover {
        background-color: #0056b3;
        color: white;
    }

#sidebarMenu {
    transition: all 0.3s ease-in-out;
}

.btn-dark i {
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .image-section {
        display: none;
    }

    .login-right {
        width: 100%;
        display: flex;
        justify-content: center;
        background-color: #f4f6f9;
    }
}

@media (max-width: 768px) {
    .main-sidebar {
        position: fixed;
        z-index: 1050;
        height: 100vh;
        overflow-y: auto;
        top: 0;
        left: 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
    }

        .main-sidebar.show {
            transform: translateX(0);
        }
}
