/* Forms */
.cohsar-form {
  max-width: 480px;
  margin: 20px auto;
  padding: 15px;
  border: 1px solid #ddd;
  background: #fff;
}
.cohsar-form p { margin-bottom: 12px; }
.cohsar-form label { display: block; font-weight: 600; margin-bottom: 6px; }
.cohsar-form input[type="text"],
.cohsar-form input[type="email"],
.cohsar-form input[type="password"],
.cohsar-form select,
.cohsar-form textarea { width: 100%; padding: 8px; border: 1px solid #bbb; border-radius: 4px; box-sizing: border-box; }
.cohsar-form button, .cohsar-profile-card button.button { background: #2271b1; color: #fff; border: none; padding: 10px 16px; border-radius: 4px; cursor: pointer; }
.cohsar-form button:hover, .cohsar-profile-card button.button:hover { background: #1b5f92; }
.cohsar-social-login { margin-top: 16px; }
.cohsar-google-login { display: flex; align-items: center; justify-content: center; gap: 18px; width: 100%; box-sizing: border-box; min-height: 64px; padding: 14px 20px; border: 1px solid #e1e4e8; border-radius: 6px; background: #fff; color: #5f6368; text-decoration: none; font-size: 20px; font-weight: 500; line-height: 1.2; box-shadow: 0 2px 5px rgba(60,64,67,.22); transition: background .18s ease, box-shadow .18s ease, transform .18s ease; }
.cohsar-google-login:hover { background: #fafafa; color: #3c4043; box-shadow: 0 4px 10px rgba(60,64,67,.24); transform: translateY(-1px); }
.cohsar-google-icon { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; flex: 0 0 34px; }
.cohsar-google-icon svg { display: block; width: 100%; height: 100%; }
.cohsar-login-divider { display: flex; align-items: center; gap: 12px; margin: 18px 0 4px; color: #6b7280; font-size: 13px; text-transform: uppercase; letter-spacing: .04em; }
.cohsar-login-divider:before, .cohsar-login-divider:after { content: ""; height: 1px; flex: 1; background: #e5e7eb; }
.woocommerce form.login .cohsar-social-login, .woocommerce-form-login .cohsar-social-login { margin: 0 0 22px; max-width: 520px; }
.cohsar-success { padding: 10px; background: #e7f7e7; border: 1px solid #b6e2b6; margin-bottom: 12px; }
.cohsar-error { padding: 10px; background: #ffecec; border: 1px solid #ffb3b3; margin-bottom: 12px; }
.cohsar-country-type { width: 100%; padding: 8px; margin-bottom: 8px; border: 1px solid #bbb; border-radius: 4px; box-sizing: border-box; }

/* Profile Card Specifics */
#cohsar-verify-btn {
    background: #f0f0f1; border: 1px solid #ccc; color: #333; padding: 4px 10px;
}
#cohsar-verify-btn:hover { background: #e0e0e0; }

/* ===== Spam Shield Modal & Overlay (merged from Spam Shield v2.4.1) ===== */
.cohsar-spam-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(3px);
}
.cohsar-spam-modal {
    background: #fff;
    padding: 36px 32px;
    border-radius: 10px;
    width: 440px;
    max-width: 92%;
    text-align: center;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
    border-top: 6px solid #d63638;
    animation: cohsar-modal-in .2s ease;
}
@keyframes cohsar-modal-in {
    from { transform: scale(.94); opacity: 0; }
    to   { transform: scale(1);   opacity: 1; }
}
.cohsar-spam-modal h3 {
    color: #d63638;
    margin: 0 0 12px;
    font-size: 22px;
    font-weight: 700;
}
.cohsar-spam-modal p {
    color: #444;
    margin: 0 0 24px;
    line-height: 1.65;
    font-size: 16px;
}
.cohsar-spam-btn {
    background: #d63638;
    color: #fff;
    border: none;
    padding: 12px 32px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    transition: background .2s;
}
.cohsar-spam-btn:hover { background: #b32d2e; }
