/* Moxy CMT login page (from html/login.html) */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body.cmt-login-body {
    background-color: #2B2B2B;
    color: #0f172a;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cmt-login-page-container {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    width: 100%;
    max-width: 1240px;
    height: 70vh;
    min-height: 700px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin: 24px;
}

.cmt-login-left-side {
    position: relative;
    background-color: #f8fafc;
    padding: 40px 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.cmt-login-panel-logo {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 180px;
    height: auto;
    border: none;
    background: transparent;
}

.cmt-login-brand-title {
    font-size: 36px;
    font-weight: 650;
    color: #0f172a;
    margin-top: 76px;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    text-align: center;
}

.cmt-login-tagline {
    margin-top: 16px;
    font-size: 18px;
    font-weight: 600;
    color: #334155;
}

.cmt-login-image-wrapper {
    width: 100%;
    max-width: 580px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.04);
    background: #e2e8f0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cmt-login-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.cmt-login-right-side {
    padding: 48px 48px 8px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: #ffffff;
    border-left: 1px solid #e2e8f0;
}

.cmt-login-box {
    width: 100%;
    max-width: 360px;
    margin-top: 76px;
}

.cmt-login-box h2 {
    font-size: 28px;
    font-weight: 650;
    margin-bottom: 8px;
    color: #0f172a;
    letter-spacing: -0.5px;
}

.cmt-login-box p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 32px;
}

.cmt-login-form-group {
    margin-bottom: 24px;
}

.cmt-login-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #334155;
}

.cmt-login-form-group input[type="text"],
.cmt-login-form-group input[type="password"],
.cmt-login-form-group input[type="email"] {
    width: 88%;
    padding: 11px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 7px;
    font-size: 13px;
    color: #0f172a;
    transition: all 0.2s;
    background-color: #f8fafc;
}

.cmt-login-form-group input:focus {
    outline: none;
    border-color: #2563eb;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.cmt-login-form-options {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 28px;
}

.cmt-login-remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #475569;
}

.cmt-login-remember-me input {
    cursor: pointer;
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid #cbd5e1;
}

.cmt-login-btn {
    width: 88%;
    padding: 12px;
    background-color: #0f172a;
    color: white;
    border: none;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.cmt-login-btn:hover {
    background-color: #1e293b;
}

.cmt-login-alert {
    margin-bottom: 20px;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 14px;
}

.cmt-login-alert-danger {
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

@media (max-width: 960px) {
    .cmt-login-page-container {
        grid-template-columns: 1fr;
        height: auto;
        max-width: 520px;
    }

    .cmt-login-right-side {
        border-left: none;
        border-top: 1px solid #e2e8f0;
        padding: 60px 40px;
    }

    .cmt-login-box {
        margin-top: 0;
    }

    .cmt-login-left-side {
        padding: 40px 40px 50px;
    }

    .cmt-login-brand-title {
        margin-top: 0;
    }
}
