.cm-login-form {
    max-width: 320px;
    margin: 2em auto;
    padding: 2em;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cm-login-form label {
    display: block;
    margin-bottom: 0.5em;
    font-weight: 500;
}

.cm-login-form .input {
    width: 100%;
    padding: 0.5em;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 1em;
    margin-bottom: 1em;
}

.cm-login-form .forgetmenot {
    margin: 1em 0;
}

.cm-login-form .forgetmenot label {
    display: inline-block;
    font-weight: normal;
}

.cm-login-form .button-primary {
    width: 100%;
    padding: 0.75em;
    background: #2271b1;
    border: none;
    border-radius: 6px;
    color: #fff;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.2s;
}

.cm-login-form .button-primary:hover {
    background: #135e96;
}

.cm-login-links {
    text-align: center;
    margin-top: 1em;
}

.cm-login-error {
    background: #fee2e2;
    border: 1px solid #fecaca;
    color: #991b1b;
    padding: 0.75em;
    border-radius: 6px;
    margin-bottom: 1em;
    text-align: center;
}