﻿html, body {
    height: 100%;
    margin: 0;
    background: url('/images/loginbackground.png') no-repeat center center;
    background-size: cover;
    background-color: #d6e3f1;
}

.login-page {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.login-header,
.login-box {
    margin-left: auto;
    margin-right: auto;
}

.login-header {
    padding-top: 60px;
    margin-bottom: 30px;
}

    .login-header img {
        max-width: 220px;
    }

/* MAIN CONTENT AREA */
.login-box {
    display: flex;
    width: 1000px;
    max-width: 95%;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* LEFT PANEL */
.login-left {
    width: 40%;
    padding: 20px;
    background: #f2f9ff;
    color: #555;
}

.login-left-header {
    display: block;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* RIGHT PANEL */
.login-right {
    width: 60%;
    padding: 0;
    overflow: hidden;
    position: relative;
}

    /* Make image fill completely */
    .login-right img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }


@media (max-width: 768px) {
    .login-right {
        display: none;
    }

    .login-left {
        width: 100%;
        border-radius: 8px;
    }

    .login-box {
        display: block;
        width: 30%;
        max-width: 400px;
        margin: 0 auto;
    }
}

.login-input {
    min-height: 46px;
}

.input-group {
    margin-top: 15px;
}

.sb-btn-login {
    width: 100%;
    margin-top: 15px;
}

.sb-right-link {
    line-height: 34px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.sb-footer {
    width: 100%;
    height: 40px;
    text-align: center;
    position: absolute;
    bottom: 0;
    background: url('../../../Images/comodo_secure_76x26_transp.png') no-repeat;
    min-width: 980px;
}
