.jkcf-wrap {
max-width: 760px;
margin: 0 auto;
}
.jkcf-form {
--bg: #ffffff;
--border: rgba(20, 20, 20, 0.12);
--borderFocus: rgba(20, 20, 20, 0.28);
--text: #101114;
--muted: rgba(16, 17, 20, 0.65);
--shadow: 0 16px 50px rgba(0,0,0,0.08);
background: var(--bg);
border: 1px solid var(--border);
border-radius: 18px;
padding: 18px;
box-shadow: var(--shadow);
position: relative;
overflow: hidden;
}
.jkcf-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 14px;
}
@media (max-width: 640px) {
.jkcf-grid { grid-template-columns: 1fr;   gap: 0px;}
}
.jkcf-field {
position: relative;
margin-bottom: 14px;
}
.jkcf-input {
width: 100%;
border-radius: 14px;
border: 1px solid var(--border);
padding: 20px 14px 12px!important;
font-size: 16px;
color: var(--text);
outline: none;
background: rgba(255,255,255,0.9);
transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}
.jkcf-textarea { resize: vertical; min-height: 140px; }
.jkcf-input:focus {
border-color: var(--borderFocus);
box-shadow: 0 0 0 4px rgba(0,0,0,0.04);
transform: translateY(-1px);
}
.jkcf-label {
position: absolute;
left: 14px;
top: 15px;
font-size: 15px;
color: var(--muted);
pointer-events: none;
transform-origin: left top;
transition: transform 220ms cubic-bezier(.2,.9,.2,1), opacity 220ms ease;
opacity: 0.95;
}
.jkcf-field.is-focused .jkcf-label,
.jkcf-field.has-value .jkcf-label {
transform: translateY(-12px) scale(0.86);
opacity: 0.85;
}
.jkcf-err {
font-size: 13px;
color: #b00020;
min-height: 18px;
padding: 6px 6px 0;
}
.jkcf-consent {
margin: 12px 0 6px;
padding: 12px 12px;
}
.jkcf-consent-label {
display: flex;
gap: 10px;
align-items: flex-start;
font-size: 14px;
color: var(--text);
}
.jkcf-consent-label input[type="checkbox"] {
margin-top: 3px;
width: 18px;
height: 18px;
accent-color: #111;
}
.jkcf-submit {
width: 100%;
border: 0;
border-radius: 3px;
padding: 14px 16px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
color: #fff;
background: #980000;
position: relative;
overflow: hidden;
transition: transform 200ms ease, opacity 200ms ease;
}
.jkcf-submit:active { transform: scale(0.99); }
.jkcf-submit.is-loading {
opacity: 0.92;
cursor: not-allowed;
}
.jkcf-spinner {
display: none;
width: 18px;
height: 18px;
border-radius: 999px;
border: 2px solid rgba(255,255,255,0.35);
border-top-color: rgba(255,255,255,1);
position: absolute;
right: 14px;
top: 50%;
transform: translateY(-50%);
animation: jkcfSpin 700ms linear infinite;
}
@keyframes jkcfSpin { to { transform: translateY(-50%) rotate(360deg); } }
.jkcf-check {
display: none;
position: absolute;
right: 14px;
top: 50%;
transform: translateY(-50%);
font-size: 18px;
line-height: 1;
}
.jkcf-status {
margin-top: 12px;
min-height: 22px;
color: var(--muted);
font-size: 14px;
opacity: 0;
transform: translateY(6px);
transition: opacity 220ms ease, transform 220ms ease;
}
.jkcf-status.is-visible {
opacity: 1;
transform: translateY(0);
}
.jkcf-status.is-error { color: #b00020; }
.jkcf-form.shake { animation: jkcfShake 420ms ease; }
@keyframes jkcfShake {
10%, 90% { transform: translateX(-1px); }
20%, 80% { transform: translateX(2px); }
30%, 50%, 70% { transform: translateX(-4px); }
40%, 60% { transform: translateX(4px); }
}
.jkcf-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.jkcf-privacy { margin-top: 10px; color: var(--muted); font-size: 12px; } .jkcf-verify {
margin: 10px 0 14px;
border-radius: 16px;
border: 1px solid rgba(0,0,0,0.14);
background: rgba(0,0,0,0.02);
padding: 14px;
animation: jkcfReveal 260ms ease;
}
@keyframes jkcfReveal {
from { opacity: 0; transform: translateY(8px); }
to { opacity: 1; transform: translateY(0); }
}
.jkcf-verify-title { font-weight: 700; margin-bottom: 8px; }
.jkcf-verify-hint { margin-top: 10px; font-size: 12px; color: rgba(16,17,20,0.65); }
.jkcf-captcha-row {
display: flex;
gap: 12px;
align-items: center;
margin: 8px 0 10px;
}
.jkcf-captcha-q {
font-size: 14px;
color: rgba(16,17,20,0.85);
flex: 1;
}
.jkcf-captcha-img {
display: none;
width: 260px;
height: 92px;
border-radius: 12px;
border: 1px solid rgba(0,0,0,0.12);
background: #fff;
}
@media (max-width: 520px) {
.jkcf-captcha-row { flex-direction: column; align-items: stretch; }
.jkcf-captcha-img { width: 100%; height: auto; }
}
.jkcf-captcha-refresh {
border: 1px solid rgba(0,0,0,0.14);
background: #fff;
border-radius: 12px;
padding: 10px 12px;
cursor: pointer;
font-weight: 600;
transition: transform 180ms ease, box-shadow 180ms ease;
}
.jkcf-captcha-refresh:active { transform: scale(0.99); }