/**
 * Custom Login Portal — Frontend Styles
 *
 * @package CustomLoginPortal
 */

/* ── Wrapper ────────────────────────────────────────────── */
.clp-login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    padding: 40px 20px;
}

/* ── Login Box ──────────────────────────────────────────── */
.clp-login-box {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 40px 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* ── Title ──────────────────────────────────────────────── */
.clp-login-title {
    margin: 0 0 24px;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    color: #1d2327;
}

/* ── Error Messages ─────────────────────────────────────── */
.clp-errors {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    border-radius: 6px;
    padding: 12px 16px;
    margin-bottom: 20px;
    color: #991b1b;
    font-size: 14px;
    line-height: 1.5;
}

.clp-errors p {
    margin: 0;
}

.clp-errors p + p {
    margin-top: 6px;
}

/* ── Form Fields ────────────────────────────────────────── */
.clp-field {
    margin-bottom: 18px;
}

.clp-field label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}

.clp-field input[type="text"],
.clp-field input[type="password"] {
    display: block;
    width: 100%;
    padding: 10px 14px;
    font-size: 15px;
    line-height: 1.5;
    color: #1d2327;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    box-sizing: border-box;
}

.clp-field input[type="text"]:focus,
.clp-field input[type="password"]:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* ── Remember Me ────────────────────────────────────────── */
.clp-remember-row {
    margin-bottom: 24px;
}

.clp-remember-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #4b5563;
    cursor: pointer;
}

.clp-remember-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0;
}

/* ── Submit Button ──────────────────────────────────────── */
.clp-submit-btn {
    display: block;
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: #2563eb;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.15s ease;
}

.clp-submit-btn:hover {
    background: #1d4ed8;
}

.clp-submit-btn:active {
    background: #1e40af;
}

/* ── Links ──────────────────────────────────────────────── */
.clp-links {
    text-align: center;
    margin-top: 16px;
}

.clp-links a {
    font-size: 13px;
    color: #2563eb;
    text-decoration: none;
}

.clp-links a:hover {
    text-decoration: underline;
}
