/* Influencer Affiliate Pro - Auth Stylesheet */
.iap-auth-container {
    max-width: 440px;
    margin: 40px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.iap-auth-box {
    padding: 32px;
}

.iap-auth-header {
    text-align: center;
    margin-bottom: 24px;
}

.iap-auth-header h2 {
    font-weight: 800;
    margin-bottom: 4px;
    color: #0f172a;
}

.iap-auth-header p {
    color: #64748b;
    font-size: 14px;
}

.iap-input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid #cbd5e1;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

.iap-input:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.iap-link {
    color: #6366f1;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.iap-link:hover {
    text-decoration: underline;
}

.iap-alert {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 16px;
}

.iap-alert-danger { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.iap-alert-success { background: #dcfce7; color: #166534; border: 1px solid #86efac; }
