/**
 * ============================================================================
 * auth-base.css - Base styles for all authentication pages
 * ============================================================================
 * 
 * File Location: /www/wwwroot/payorget.com/public/css/auth-base.css
 * 
 * Purpose: Common styles for authentication pages
 * 
 * ============================================================================
 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333333;
}

/* Hide all SVG icons */
svg {
    display: none !important;
}

/* Remove all focus outlines */
*:focus {
    outline: none !important;
    box-shadow: none !important;
}
