/* ─── Lift Keys — /lift/ verification page ──────────────────── */

/* ─── Form layout ─────────────────────────────────────────────── */
#lk-check-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 480px;
}

/* ─── Address (readonly, no border) ──────────────────────────── */
#lk-address {
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    font-size: 15px;
    color: #6b7280;
    font-weight: 500;
    cursor: default;
    width: 100%;
    letter-spacing: .01em;
}

/* ─── Top row: address left, apartment right ─────────────────── */
.lk-form-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.lk-form-address-wrap {
    flex: 1;
    min-width: 0;
}

/* ─── Apartment input — big square ───────────────────────────── */
.lk-apt-wrap {
    flex-shrink: 0;
}

#lk-apartment {
    width: 102px;
    height: 58px;
    text-align: left;
    font-size: 36px;
    font-weight: 800;
    color: #1e293b;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    outline: none;
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
    letter-spacing: -.02em;
}
#lk-apartment::-webkit-inner-spin-button,
#lk-apartment::-webkit-outer-spin-button {  }
#lk-apartment:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,.15);
}

/* ─── Standard inputs (email, residents) ─────────────────────── */
.lk-input {
    width: 100%;
    padding: 13px 16px;
    font-size: 15px;
    color: #1e293b;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    outline: none;
    background: #fff;
    box-sizing: border-box;
    transition: border-color .2s, box-shadow .2s;
}
.lk-input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,.15);
}
.lk-input::placeholder { color: #9ca3af; }

/* ─── Residents row — hidden by default ──────────────────────── */
#lk-residents {
    display: none;
}

/* ─── Submit button ──────────────────────────────────────────── */
#lk-check-form button[type="submit"] {
    padding: 14px 32px;
    background: #ff6600;
    width: 100%;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background .15s, transform .1s;
    align-self: flex-start;
}
#lk-check-form button[type="submit"]:hover  { background: #6cb9b8; }
#lk-check-form button[type="submit"]:active { transform: scale(.98); }
#lk-check-form button[type="submit"]:disabled {
    background: #93c5fd;
    cursor: not-allowed;
}

/* ─── [lk_key_info] shortcode on /keys/ ─────────────────────── */
.lk-key-info {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-size: 15px;
}
.lk-key-info--ok {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
}
.lk-key-info--limit {
    background: #fff1f2;
    border: 1px solid #fecdd3;
}
.lk-key-info__icon { font-size: 28px; flex-shrink: 0; }
.lk-key-info__text strong { display: block; font-size: 16px; margin-bottom: 4px; color: #1e293b; }
.lk-key-info__text p { margin: 0; color: #374151; }

/* ─── Mobile ─────────────────────────────────────────────────── */
@media (max-width: 480px) {
    .lk-form-top-row { flex-direction: column; align-items: flex-start; gap: 12px; }
    #lk-apartment { width: 102px; height: 80px; font-size: 30px; }
}


.lk-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lk-row input {
    flex: 1;
}
.lk-key-info {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-size: 15px;
}

.lk-key-info--ok {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
}

.lk-key-info__icon { font-size: 28px; flex-shrink: 0; }
.lk-key-info__text strong { display: block; font-size: 16px; margin-bottom: 4px; }
