﻿body, html {
    height: 100%;
    margin: 0;
    overflow:hidden;
}

.login-container {
    height: 100vh;
}

.left-panel {
    background-color: #f3f3f3;
    padding: 0;
    overflow: hidden;
}

    .left-panel img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.right-panel {
    background-color: #3B83BD; /*#2c3e50; Dark blue-gray */
    color: white;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
}

    .right-panel .form-control {
        background-color: #ecf0f1;
        color: #2c3e50;
    }

    .right-panel .form-label {
        color: #ecf0f1;
    }

    .right-panel .form-check-label,
    .right-panel a {
        color: #ecf0f1;
    }

.login-box {
    width: 100%;
    max-width: 350px;
    text-align: center;
}

.small-logo {
    max-width: 80px;
    margin-bottom: 20px;
}

.form-label {
    text-align: left;
    display: block;
}

.error-msg {
    color: red;
    font-size: 0.9rem;
    display: none;
}

/* Hide the left panel in mobile view */
@media (max-width: 767.98px) {
    .left-panel {
        display: none;
    }
    body, html {
        height: 100%;
        margin: 0;
        overflow: auto;
    }

}
.example-modal .modal {
    position: relative;
    top: auto;
    bottom: auto;
    right: auto;
    left: auto;
    display: block;
    z-index: 1;
}

.example-modal .modal {
    background: transparent !important;
}

.text-red {
    color: #dd4b39 !important;
}

.text-green {
    color: forestgreen !important;
}

.error {
    color: #dd4b39 !important;
}
