body.login-page {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        sans-serif;
    background-color: #fff;
}

.split-layout {
    display: flex;
    width: 100%;
    height: 100%;
}

.login-hero {
    display: none;
    flex: 2;
    background-color: #f0f7f2;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

@media (max-width: 991px) {
    .login-hero {
        display: none !important;
    }
}

.hero-content {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content img {
    max-width: 85%;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.login-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    background: #fff;
}

.login-inner {
    width: 100%;
    max-width: 380px;
}

.brand-logo {
    margin-bottom: 30px;
}

.brand-logo img {
    height: 100px;
    width: auto;
}

.welcome-text {
    font-size: 24px;
    font-weight: 700;
    color: #023436;
    margin-bottom: 5px;
    line-height: 1.3;
}

.welcome-text-sub {
    font-size: 18px;
    font-weight: 400;
    color: #023436;
    margin: 0 0 20px 0;
	padding: 0;
    line-height: 1.3;
}

#login-form table {
    width: 100%;
    border: none;
}

#login-form tbody,
#login-form tr,
#login-form td {
    display: block;
    width: 100%;
    border: none;
    padding: 0;
}

#login-form td.title {
    font-size: 14px;
    font-weight: 600;
    color: #023436;
    margin-bottom: 6px;
    margin-top: 15px;
}

#login-form input.form-control,
#login-form input[type="text"],
#login-form input[type="password"] {
    width: 100%;
    height: 48px;
    padding: 10px 15px;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box;
    background: #fff;
}

#login-form input:focus {
    border-color: #00d64f;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 214, 79, 0.1);
}

#login-form input.btn-primary,
#login-form input[type="submit"],
.mainaction {
    width: 100%;
    background-color: #023436 !important;
    color: #fff !important;
    border: none;
    height: 50px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 0px;
    cursor: pointer;
    text-transform: capitalize;
    -webkit-appearance: none;
}

#login-form input[type="submit"]:hover {
    background-color: #012224 !important;
}

.login-footer {
    margin-top: 20px;
    font-size: 14px;
    color: #666;
    text-align: center;
}

.login-footer a {
    color: #00d64f;
    text-decoration: none;
    font-weight: 600;
}

.noscriptwarning {
    color: red;
    text-align: center;
}

#messagestack {
    position: relative;
    width: 100%;
    margin-bottom: 10px;
    z-index: 10;
}

.warning {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    display: block;
    box-shadow: none;
}

.loading {
    background-color: #cce5ff;
    color: #004085;
    border: 1px solid #b8daff;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    display: block;
    box-shadow: none;
}

.notice {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    display: block;
    box-shadow: none;
}

.error {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    display: block;
    box-shadow: none;
}

.alert .close {
    color: #fff;
    opacity: 0.7;
    text-decoration: none;
    float: right;
    font-weight: bold;
    margin-left: 10px;
}

.alert .close:hover {
    opacity: 1;
}

.legal-disclaimer {
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
}

.legal-disclaimer p {
    font-size: 11px;
    color: #999;
    line-height: 1.5;
    margin: 0;
}

.legal-disclaimer .copyright {
    margin-top: 12px;
    font-size: 10px;
    color: #bbb;
}

.legal-disclaimer .copyright a {
    color: #bbb;
    text-decoration: underline;
}

.legal-disclaimer .copyright a:hover {
    color: #00d64f;
}