/* CNEWS Insertion Order System — Custom Login Page */

*,
*::before,
*::after {
    box-sizing: border-box;
}

.cno-login-wrap {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 12px 16px;
}

.cno-login-box {
    background: #ffffff;
    border: 1px solid #dcdcde;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 40px 44px 36px;
    width: 100%;
    max-width: 420px;
}

/* ── Brand area ───────────────────────────────────────────────── */
.cno-login-brand {
    text-align: center;
    margin-bottom: 28px;
}

.cno-login-brand img {
    max-height: 72px;
    max-width: 260px;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto 10px;
}

.cno-login-brand h2 {
    margin: 0 0 6px;
    font-size: 22px;
    font-weight: 700;
    color: #1d2327;
}

.cno-login-tagline {
    margin: 0;
    font-size: 13px;
    color: #646970;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

/* ── Error notice ─────────────────────────────────────────────── */
.cno-login-error {
    background: #fde2e1;
    color: #8a1f1a;
    border-left: 4px solid #d63638;
    border-radius: 4px;
    padding: 10px 14px;
    font-size: 14px;
    margin-bottom: 20px;
}

/* ── Override WP login form styles ───────────────────────────── */
#cno-loginform {
    margin: 0;
    padding: 0;
}

#cno-loginform p {
    margin-bottom: 16px;
}

#cno-loginform label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #1d2327;
    margin-bottom: 5px;
}

#cno-loginform input[type="text"],
#cno-loginform input[type="password"] {
    display: block;
    width: 100%;
    padding: 10px 12px;
    font-size: 15px;
    border: 1px solid #8c8f94;
    border-radius: 4px;
    color: #1d2327;
    background: #fff;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

#cno-loginform input[type="text"]:focus,
#cno-loginform input[type="password"]:focus {
    border-color: #2271b1;
    box-shadow: 0 0 0 2px rgba(34, 113, 177, 0.25);
    outline: none;
}

#cno-loginform .forgetmenot {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #50575e;
}

#cno-loginform .forgetmenot input[type="checkbox"] {
    margin: 0;
    width: 16px;
    height: 16px;
    accent-color: #2271b1;
}

#cno-loginform input[type="submit"] {
    display: block;
    width: 100%;
    padding: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: #2271b1;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.15s ease;
    margin-top: 20px;
}

#cno-loginform input[type="submit"]:hover {
    background: #135e96;
}

#cno-loginform input[type="submit"]:active {
    background: #0a4b78;
}

/* Hide the default WP "Lost your password?" link that lives outside the form */
#cno-loginform .login-lost-password {
    display: none;
}