/* Minimalist Security Checkpoint Styles */

/* Additional styles for the captcha container to match dark theme */
#captcha-container {
  margin-top: 16px;
  margin-bottom: 16px;
}

/* Mobile responsive adjustments */
@media (max-width: 600px) {
  .verify-card {
    width: 90%;
    padding: 24px;
  }
}

/* Mobile Notice Styles */
.mobile-notice {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 32px;
    background: #0a0a0a;
    z-index: 9999;
    text-align: center;
}

.mobile-notice-content {
    max-width: 420px;
    width: 100%;
    background: rgba(18, 18, 18, 0.95);
    border: 1px solid #1a1a1a;
    border-radius: 6px;
    padding: 32px 28px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
    color: #e0e0e0;
}

.mobile-notice-content h2 {
    margin: 0 0 16px;
    font-size: 24px;
    font-weight: 600;
    color: #e0e0e0;
}

.mobile-notice-content p {
    margin: 0 0 12px;
    font-size: 16px;
    line-height: 1.5;
    color: #b0b0b0;
}

.mobile-notice-hint {
    margin: 0;
    font-size: 14px;
    color: #707070;
}