/* MyUT-Style Split Login Theme */
.login-bg-ut {
    min-height: 100vh;
    background: #fff;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    position: relative;
    overflow: hidden;
}
.login-bg-ut .left-panel {
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
    min-height: 100vh;
    padding: 0 2vw;
    position: relative;
    z-index: 2;
}
.login-bg-ut .left-panel .logo {
    margin-bottom: 2rem;
    max-width: 160px;
}
.login-bg-ut .left-panel h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
    text-align: center;
}
.login-bg-ut .left-panel .desc {
    color: #f9b000;
    font-size: 1.08rem;
    font-weight: 500;
    margin-bottom: 2.2rem;
    text-align: center;
    max-width: 420px;
}
.login-bg-ut .left-panel .desc b {
    color: #222;
}
.login-bg-ut .right-panel {
    width: 50%;
    min-height: 100vh;
    background: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-bg-ut .right-panel .wave {
    position: absolute;
    left: -80px;
    top: 0;
    width: 120px;
    height: 100vh;
    z-index: 2;
}
.login-bg-ut .right-panel .bg-img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}
.login-bg-ut .login-card {
    position: relative;
    z-index: 3;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.10);
    padding: 2.5rem 2rem 2rem 2rem;
    max-width: 420px;
    width: 100%;
    margin: 2rem auto;
    border: 1px solid #e3e6ef;
    color: #222;
    font-family: 'Segoe UI', Arial, sans-serif;
}
.login-bg-ut .login-card h4 {
    font-weight: 600;
    color: #1a232f;
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
    font-size: 1.5rem;
    text-align: center;
}
.login-bg-ut .login-card .form-control {
    border-radius: 8px;
    border: 1px solid #d1d9e6;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    background: #f8fafc;
    color: #1a232f;
    font-weight: 500;
    box-shadow: none;
}
.login-bg-ut .login-card .form-control:focus {
    border-color: #2e86de;
    background: #fff;
    color: #1a232f;
    box-shadow: 0 0 0 2px #2e86de22;
}
.login-bg-ut .login-card .input-group-text {
    background: #f4f8fb;
    border: none;
    border-radius: 0 8px 8px 0;
    color: #2e86de;
    font-weight: 600;
}
.login-bg-ut .login-card .btn-primary {
    background: #fff;
    border: 2px solid #2e86de;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.7rem 0;
    color: #2e86de;
    letter-spacing: 0.5px;
    box-shadow: none;
    transition: background 0.2s, color 0.2s;
}
.login-bg-ut .login-card .btn-primary:hover {
    background: #2e86de;
    color: #fff;
}
.login-bg-ut .login-card .btn-success {
    border-radius: 8px;
    font-weight: 600;
    margin-top: 0.5rem;
    color: #fff;
    background: linear-gradient(90deg, #00b894 0%, #00cec9 100%);
    border: none;
}
.login-bg-ut .login-card .btn-success:hover {
    background: linear-gradient(90deg, #00cec9 0%, #00b894 100%);
}
.login-bg-ut .login-card .form-group label {
    font-weight: 600;
    color: #1a232f;
    font-size: 1rem;
}
.login-bg-ut .login-card .remember-me label {
    font-size: 0.98rem;
    color: #636e72;
    font-weight: 500;
}
.login-bg-ut .login-card .register-link {
    margin-top: 1.2rem;
    font-size: 1rem;
    color: #636e72;
}
.login-bg-ut .login-card .register-link a {
    color: #0984e3;
    font-weight: 700;
    text-decoration: underline;
}
@media (max-width: 991px) {
    .login-bg-ut .left-panel, .login-bg-ut .right-panel {
        width: 100%;
        min-height: unset;
    }
    .login-bg-ut {
        flex-direction: column;
    }
    .login-bg-ut .right-panel .wave {
        display: none;
    }
}
